diff options
| -rw-r--r-- | lisp/ChangeLog | 23 | ||||
| -rw-r--r-- | src/ChangeLog | 17 |
2 files changed, 34 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 092173917ba..c021cee952f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,15 +1,23 @@ | |||
| 1 | 2001-10-14 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * progmodes/executable.el (executable-binary-suffixes): Make varalias. | ||
| 4 | (executable-find): Use exec-suffixes. | ||
| 5 | (executable-set-magic): Don't use make-local-hook. | ||
| 6 | |||
| 7 | * bindings.el (exec-suffixes): Initialize to a system-dependent value. | ||
| 8 | |||
| 1 | 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il> | 9 | 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 10 | ||
| 3 | * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]: | 11 | * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]: |
| 4 | Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386. | 12 | Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386. |
| 5 | Add .so to the Unix and GNU branch. | 13 | Add .so to the Unix and GNU branch. |
| 6 | 14 | ||
| 7 | * international/latin-1.el: | 15 | * international/latin-1.el: |
| 8 | * international/latin-2.el: | 16 | * international/latin-2.el: |
| 9 | * international/latin-3.el: | 17 | * international/latin-3.el: |
| 10 | * international/latin-4.el: | 18 | * international/latin-4.el: |
| 11 | * international/latin-5.el: | 19 | * international/latin-5.el: |
| 12 | * international/latin-8.el: | 20 | * international/latin-8.el: |
| 13 | * international/latin-9.el: Add no-byte-compile: t, since | 21 | * international/latin-9.el: Add no-byte-compile: t, since |
| 14 | Makefile.in instructs make-docfile to look at .el files. | 22 | Makefile.in instructs make-docfile to look at .el files. |
| 15 | 23 | ||
| @@ -24,6 +32,9 @@ | |||
| 24 | 32 | ||
| 25 | 2001-10-13 Stefan Monnier <monnier@cs.yale.edu> | 33 | 2001-10-13 Stefan Monnier <monnier@cs.yale.edu> |
| 26 | 34 | ||
| 35 | * bindings.el (esc-map): Revert `j' and `C-j' bindings to | ||
| 36 | indent-new-comment-line from comment-indent-new-line. | ||
| 37 | |||
| 27 | * textmodes/refill.el (refill-mode): | 38 | * textmodes/refill.el (refill-mode): |
| 28 | Bind DEL to backward-delete-char-untabify. | 39 | Bind DEL to backward-delete-char-untabify. |
| 29 | Set backward-delete-char-untabify-method to `hungry'. | 40 | Set backward-delete-char-untabify-method to `hungry'. |
diff --git a/src/ChangeLog b/src/ChangeLog index 5b2329f1659..a4374db8a99 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2001-10-14 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * s/ms-w32.h (EXEC_SUFFIXES): | ||
| 4 | * s/msdos.h (EXEC_SUFFIXES): | ||
| 5 | * process.h (EXEC_SUFFIXES): Remove. | ||
| 6 | |||
| 7 | * callproc.c (syms_of_callproc): Init Vexec_suffixes to Qnil. | ||
| 8 | (decode_suffixes): Remove. | ||
| 9 | |||
| 10 | * intervals.h (TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS) | ||
| 11 | (TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS): Use invisible_p's new return vals. | ||
| 12 | (invisible_ellipsis_p, invisible_noellipsis_p): Remove. | ||
| 13 | |||
| 14 | * xdisp.c (DOLIST, LOOP_PROPVAL): Remove. | ||
| 15 | (invisible_p): Return 1 or 2 depending on whether an ellipsis is used. | ||
| 16 | (invisible_ellipsis_p, invisible_noellipsis_p): Remove. | ||
| 17 | |||
| 1 | 2001-10-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 18 | 2001-10-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 19 | ||
| 3 | * lisp.h (Ftop_level): Add prototype. | 20 | * lisp.h (Ftop_level): Add prototype. |