Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-13 | Remove a variable that's not really being used. | Brian Callahan | |
ok deraadt@ jasper@ | |||
2015-01-05 | As pointed out by Kaspars Bankovskis on tech@, there is no ifdef for | Mark Lumsden | |
STARTUP. | |||
2015-01-02 | Remove unused variable. | Mark Lumsden | |
2014-12-30 | Remove some checks that will always evaluate to true. Noticed by a very | Brian Callahan | |
recent clang. ok schwarze@ lum@ | |||
2014-12-06 | A few last 'easy' #include dedups. | Kenneth R Westerback | |
ok tedu@ | |||
2014-11-19 | Fire up your IC fabs! | Ingo Schwarze | |
2014-11-16 | Stop using <sys/param.h>; replace MAXPATHLEN with PATH_MAX, stop using MAX(), | Philip Guenther | |
and pull in <limits.h> for *_MAX constants. inspired on a diff from Kamil Rytarowski (n54 (at) gmx.com) ok bcallah@ | |||
2014-11-16 | Don't save the return from getindent() if you don't need it; adjust | Philip Guenther | |
comments to reflect that based on a diff from Kamil Rytarowski (n54 (at) gmx.com) | |||
2014-11-16 | pull in <time.h> for struct timespec | Philip Guenther | |
diff from Kamil Rytarowski (n54 (at) gmx.com) | |||
2014-11-16 | ctype macros/functions expect unsigned char values. Note that the lgetc() | Philip Guenther | |
macro does the cast internally like getc() does, so its return should be put an in int for the same reason. based on a diff from Kamil Rytarowski (n54 (at) gmx.com) | |||
2014-11-16 | scroll_fwd should be const char * | Philip Guenther | |
from Kamil Rytarowski (n54 (at) gmx.com) | |||
2014-11-16 | constipate charcost() | Philip Guenther | |
from Kamil Rytarowski (n54 (at) gmx.com) | |||
2014-11-13 | Nuke GOOD define and just exit(0) on success. While there remove | Florian Obser | |
unused MALLOCROUND define. No binary change. From Martin Natano (natano AT natano DOT net). OK lum@ | |||
2014-11-03 | comment out no-tab-mode, since mg is currently compiled without it; | Jason McIntyre | |
From: Kaspars Bankovskis ok lum | |||
2014-10-19 | Move the description of mg automatic recentering further down the | Mark Lumsden | |
tutorial, next to the C-l (recenter) command description. This also removes confusion if you read the tutorial on a screen larger than 24 lines. Input jmc@ ok florian@ | |||
2014-10-17 | If gotoeop() is called requiring more than one iteration, it behaves | Mark Lumsden | |
oddly if it reaches the end of buffer before completing all iterations. This diff makes the kill-paragraph and forward-paragraph commands stop once they can go no further. ok florian@ | |||
2014-10-16 | Use reallocarray() where possible. There are further possible overflows | Theo de Raadt | |
in the region, but my time is limited... | |||
2014-10-15 | some choice thoughts on back compat | Ted Unangst | |
2014-10-13 | gotoeop() does not behave as expected when there is no '\n' at the end of the | Mark Lumsden | |
buffer. ok florian@ | |||
2014-10-12 | Fix a bug in backward-paragraph. If the cursor is on the first line of | Mark Lumsden | |
a paragraph, it jumps to the start of the previous paragraph if you press M-{. Input and fix to my diff from florian@ | |||
2014-10-11 | Userland reallocarray() audit. | Doug Hogan | |
Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ | |||
2014-09-27 | sound reasoning | Sebastian Benoit | |
2014-08-19 | Let's talk about obstacles you face when trying to pull off a partial tedu@. | Ingo Schwarze | |
2014-08-14 | Add bounce matching for [] and {} like mg already does with () and like | Brian Callahan | |
Emacs does. ok florian@ | |||
2014-06-12 | Remove a comparison that is always true. Reported by clang. | Brian Callahan | |
Merge the new if into a single line, requested by florian@ ok matthew@ florian@ | |||
2014-05-28 | On delete-window, remember the position of dot and mark in the buffer | Florian Obser | |
so that an revisiting the buffer the correct line number is displayed. Found by jasper@ OK lum@ | |||
2014-05-08 | protip: "It's largely bad style to do (int)sizeof" | Ted Unangst | |
amusingly, theo phrased this with considerably more restraint than i did. | |||
2014-04-18 | We should probably thank OpenSSL. | Ingo Schwarze | |
They gave Theo another chance to be happy. | |||
2014-04-17 | I'm just trying to improve the code... | Ted Unangst | |
2014-04-17 | spidey senses | Stuart Henderson | |
2014-04-15 | My mailbox is full of shock. | Ted Unangst | |
2014-04-14 | "the randomization in this entire codebase is a grand experiment in stupid" | Ted Unangst | |
2014-04-10 | fix fd leaks in error paths missed last time around | Jonathan Gray | |
2014-04-09 | Revert 1.93, it breaks permission checks. | Florian Obser | |
"go for it" deraadt@ | |||
2014-04-03 | When finding a file in a non-existant directory: | Mark Lumsden | |
C-x C-f ~/no/dir/here/fn offer to make the directory by pressing 'y', instead of suggesting the make-directory command. ok jasper@ | |||
2014-04-02 | Add the '#' character as a comment character in the startup file. | Mark Lumsden | |
Include ';' and '#' into man page. ok deraadt@ phessler@ | |||
2014-03-31 | Tidy up. No functional change. | Mark Lumsden | |
2014-03-31 | Allow more than one level of directories to be create via | Mark Lumsden | |
make-directory again. ok florian@ jasper@ | |||
2014-03-31 | Remove a redundant assignment for slashp in findnonblank(). | Brian Callahan | |
Remove a redundant comment in the same place while here. Tweaks from lum@ ok florian@ lum@ | |||
2014-03-28 | let's talk about shit | Henning Brauer | |
2014-03-27 | Don't use nospace uninitialized in gotobop and gotoeop. | Florian Obser | |
Problem noticed and diff from bcallah@. Slightly different fix by me. OK lum@, bcallah@ | |||
2014-03-27 | new-line -> newline; | Jason McIntyre | |
not sure whether it's worth flattening the other few examples of this in our pages, but since it's used multiple times here without hyphen, at least keeps this page consistent; | |||
2014-03-26 | Previously, C-t (transpose two chars) did not behave the same as | Mark Lumsden | |
Emacs. This diff makes mg behave more so. Though new-line characters are treated as any other. Difference from emacs observed and reported by deraadt@. First diff tested and ridiculed by deraadt@. Second diff not tested and not ridiculed by deraadt@ but at least email responded to. | |||
2014-03-22 | donebell is no longer required. | Mark Lumsden | |
2014-03-22 | If no default tag defined, still let user input a tag to find. | Mark Lumsden | |
From Sunil Nimmagadda. | |||
2014-03-22 | truer words were never spoken | Ted Unangst | |
2014-03-20 | Add some missing dobeeps. | Mark Lumsden | |
ok florian@ | |||
2014-03-14 | Check if buffer is to be saved as a directory. | Mark Lumsden | |
ok florian@ | |||
2014-03-06 | add missing stdio.h include for fparseln(). | Jasper Lievisse Adriaanse | |
from Ulrich Mueller, via Han Boetes ok florian@ | |||
2014-03-05 | complaint handling | Florian Obser | |