| Commit message (Expand) | Author | Age | Files | Lines |
| * | * charset.c: Fix file descriptor leaks and errno issues. | Paul Eggert | 2013-07-17 | 1 | -14/+1 |
| * | * lread.c: Fix file descriptor leaks and errno issues. | Paul Eggert | 2013-07-17 | 1 | -48/+63 |
| * | New unwind-protect flavors to better type-check C callbacks. | Paul Eggert | 2013-07-16 | 1 | -15/+12 |
| * | Prefer list1 (X) to Fcons (X, Qnil) when building lists. | Paul Eggert | 2013-07-15 | 1 | -16/+14 |
| * | Clean up errno reporting and fix some errno-reporting bugs. | Paul Eggert | 2013-07-12 | 1 | -1/+1 |
| * | Fix races with threads and file descriptors. | Paul Eggert | 2013-07-11 | 1 | -1/+1 |
| * | Port to C89. | Paul Eggert | 2013-07-10 | 1 | -1/+1 |
| * | Make file descriptors close-on-exec when possible. | Paul Eggert | 2013-07-07 | 1 | -33/+0 |
| * | Fix openp errno handling. | Paul Eggert | 2013-07-07 | 1 | -15/+42 |
| * | Use emacs_open more consistently when opening files. | Paul Eggert | 2013-07-05 | 1 | -2/+2 |
| * | Remove duplicate #include directives. | Paul Eggert | 2013-07-05 | 1 | -1/+0 |
| * | * lisp/subr.el (with-eval-after-load): New macro. | Stefan Monnier | 2013-06-13 | 1 | -3/+3 |
| * | Use just DOC instead of DOC-nn.mm. | Stefan Monnier | 2013-05-15 | 1 | -1/+1 |
| * | * src/doc.c (get_doc_string): Slightly relax the sanity checking. | Stefan Monnier | 2013-05-09 | 1 | -1/+20 |
| * | * src/lread.c (readchar): Don't read from a dead buffer. (Bug#14280) | Glenn Morris | 2013-05-07 | 1 | -0/+3 |
| * | * lisp/simple.el (read-expression-map): Use completion-at-point. | Stefan Monnier | 2013-05-04 | 1 | -1/+3 |
| * | Prefer < to > in range checks such as 0 <= i && i < N. | Paul Eggert | 2013-04-01 | 1 | -6/+6 |
| * | Reorder conditions that are written backwards | Andreas Schwab | 2013-03-24 | 1 | -10/+10 |
| * | * src/lread.c: Minor cleanup. | Stefan Monnier | 2013-03-10 | 1 | -47/+27 |
| * | Clean up read_key_sequence a bit; reread active keymaps after first event. | Stefan Monnier | 2013-02-11 | 1 | -3/+3 |
| * | * src/lread.c (skip_dyn_bytes): New function. | Stefan Monnier | 2013-02-08 | 1 | -26/+41 |
| * | * lisp.h (toplevel): Add comment about using Lisp_Save_Value | Dmitry Antipov | 2013-01-17 | 1 | -1/+1 |
| * | * src/lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow extraction | Dmitry Antipov | 2013-01-15 | 1 | -1/+1 |
| * | Avoid needless casts with XSAVE_POINTER. | Paul Eggert | 2013-01-14 | 1 | -1/+1 |
| * | Make Lisp_Save_Value more versatile storage for up to four objects. | Dmitry Antipov | 2013-01-14 | 1 | -1/+1 |
| * | Merge from emacs-24; up to 2012-12-06T01:39:03Z!monnier@iro.umontreal.ca | Paul Eggert | 2013-01-02 | 1 | -1/+2 |
| |\ |
|
| | * | Update copyright notices for 2013. | Paul Eggert | 2013-01-01 | 1 | -1/+2 |
| * | | Simplify via eabs. | Paul Eggert | 2013-01-01 | 1 | -2/+1 |
| * | | Merge from emacs-24; up to 2012-11-26T19:56:14Z!monnier@iro.umontreal.ca | Glenn Morris | 2012-12-09 | 1 | -6/+10 |
| |\ \
| |/ |
|
| | * | * lread.c (Vload_source_file_function): Doc fix. | Christopher Schmidt | 2012-12-08 | 1 | -6/+10 |
| * | | Assume POSIX 1003.1-1988 or later for errno.h. | Paul Eggert | 2012-11-26 | 1 | -2/+0 |
| * | | Conflate Qnil and Qunbound for `symbol-function'. | Stefan Monnier | 2012-11-20 | 1 | -1/+2 |
| * | | Use faccessat, not access, when checking file permissions. | Paul Eggert | 2012-11-13 | 1 | -42/+50 |
| * | | Shrink struct vectorlike_header to the only size field. | Dmitry Antipov | 2012-11-08 | 1 | -1/+1 |
| |/ |
|
| * | * lread.c (Fload): Doc fix. | Chong Yidong | 2012-10-20 | 1 | -12/+11 |
| * | Undo faccessat change. | Paul Eggert | 2012-10-19 | 1 | -29/+27 |
| * | Use faccessat, not access, when checking file permissions. | Paul Eggert | 2012-10-19 | 1 | -27/+29 |
| * | Fix bug #12587 with slow startup on MS-Windows with Netlogon service. | Eli Zaretskii | 2012-10-12 | 1 | -1/+7 |
| * | lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans. | Paul Eggert | 2012-10-11 | 1 | -84/+82 |
| * | Spelling fixes. | Paul Eggert | 2012-10-04 | 1 | -1/+1 |
| * | Prefer plain 'static' to 'static inline'. | Paul Eggert | 2012-09-30 | 1 | -1/+1 |
| * | Comment | Glenn Morris | 2012-09-28 | 1 | -0/+2 |
| * | * src/lread.c (lisp_file_lexically_bound_p): Handle #! lines. | Glenn Morris | 2012-09-28 | 1 | -2/+17 |
| * | Simplify and avoid signal-handling races. | Paul Eggert | 2012-09-23 | 1 | -12/+12 |
| * | Port better to POSIX hosts lacking _setjmp. | Paul Eggert | 2012-09-15 | 1 | -1/+0 |
| * | Convenient macro to check whether the buffer is live. | Dmitry Antipov | 2012-09-11 | 1 | -1/+1 |
| * | Assume C89 or later for math functions. | Paul Eggert | 2012-09-09 | 1 | -1/+0 |
| * | Macro-expand interpreted code during load. | Stefan Monnier | 2012-09-04 | 1 | -0/+13 |
| * | Simplify redefinition of 'abort' (Bug#12316). | Paul Eggert | 2012-09-04 | 1 | -2/+2 |
| * | Clean up some extern decls. | Paul Eggert | 2012-09-02 | 1 | -2/+0 |