diff options
| author | Richard M. Stallman | 2003-09-22 15:51:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-09-22 15:51:28 +0000 |
| commit | 8fe7d8c8bd50e644112afd8a3d7dd6fca7412f38 (patch) | |
| tree | f03e9d5ae805c92b4177a713aec6935a8f5cf24a | |
| parent | 73792d68fd711b71f655957c545cd5e5b3575cbb (diff) | |
| download | emacs-8fe7d8c8bd50e644112afd8a3d7dd6fca7412f38.tar.gz emacs-8fe7d8c8bd50e644112afd8a3d7dd6fca7412f38.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | lisp/ChangeLog | 39 | ||||
| -rw-r--r-- | man/ChangeLog | 11 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
4 files changed, 61 insertions, 0 deletions
| @@ -90,6 +90,12 @@ On 32bit machines, it is now 256M (i.e. 268435455). | |||
| 90 | displayed as balanced quotes, not the ASCII glyphs whose shape has | 90 | displayed as balanced quotes, not the ASCII glyphs whose shape has |
| 91 | been changed generally in the XFree86 fonts. | 91 | been changed generally in the XFree86 fonts. |
| 92 | 92 | ||
| 93 | +++ | ||
| 94 | ** The -f option, used from the command line to call a function, | ||
| 95 | now reads arguments for the function interactively if it i | ||
| 96 | an interactively callable function. | ||
| 97 | |||
| 98 | |||
| 93 | ** sql changes. | 99 | ** sql changes. |
| 94 | 100 | ||
| 95 | *** The variable `sql-product' controls the highlightng of different | 101 | *** The variable `sql-product' controls the highlightng of different |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2920416ab25..a9b693ae546 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,42 @@ | |||
| 1 | 2003-09-22 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/sh-script.el (sh-mode-default-syntax-table): | ||
| 4 | Renamed from sh-mode-syntax-table. Call sh-mode-syntax-table directly. | ||
| 5 | (sh-mode-syntax-table-input): New variable. | ||
| 6 | (sh-require-final-newline): Don't use eval. | ||
| 7 | (sh-builtins, sh-leading-keywords, sh-other-keywords) | ||
| 8 | (sh-variables, sh-font-lock-keywords): Don't use eval. | ||
| 9 | (sh-set-shell): When setting require-final-newline, | ||
| 10 | treat value = `require-final-newline' as don't change it. | ||
| 11 | Set sh-mode-syntax-table locally based on | ||
| 12 | sh-mode-syntax-table-input and sh-mode-default-syntax-table. | ||
| 13 | |||
| 14 | * progmodes/compile.el (compile-internal): | ||
| 15 | Call compilation-set-window-height before setting window start. | ||
| 16 | |||
| 17 | 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change) | ||
| 18 | |||
| 19 | * emacs-lisp/bytecomp.el (byte-compile-log-file): | ||
| 20 | Clear out byte-compile-last-warned-form. | ||
| 21 | |||
| 22 | 2003-09-22 Richard M. Stallman <rms@gnu.org> | ||
| 23 | |||
| 24 | * woman.el (woman-file-name, woman-follow-word): | ||
| 25 | If current-word returns nil, use "". | ||
| 26 | |||
| 27 | * simple.el (eval-expression): Bind standard-output in to-buffer case. | ||
| 28 | |||
| 29 | 2003-09-22 Richard M. Stallman <rms@gnu.org> | ||
| 30 | |||
| 31 | * emacs-lisp/lisp-mnt.el (lm-with-file): | ||
| 32 | Don't visit the file, just use insert-file-contents in temp buffer. | ||
| 33 | |||
| 34 | 2003-09-22 Jari Aalto <jari.aalto@poboxes.com> | ||
| 35 | |||
| 36 | * emacs-lisp/lisp-mnt.el (lm-get-header-re): Added | ||
| 37 | surrounding \\( and \\) around the header, as in | ||
| 38 | for lm-history-header 'Change Log\\|History'. | ||
| 39 | |||
| 1 | 2003-09-22 John Paul Wallington <jpw@gnu.org> | 40 | 2003-09-22 John Paul Wallington <jpw@gnu.org> |
| 2 | 41 | ||
| 3 | * progmodes/ld-script.el: Add Commentary section, | 42 | * progmodes/ld-script.el: Add Commentary section, |
diff --git a/man/ChangeLog b/man/ChangeLog index 7db4ae788cd..dcd5124995f 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2003-09-22 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * dired.texi (Misc Dired Commands): New node. | ||
| 4 | (Dired Navigation): Add dired-goto-file. | ||
| 5 | |||
| 6 | * files.texi (File Aliases, Misc File Ops): Add @cindex entries. | ||
| 7 | |||
| 8 | * emacs.texi (Acknowledgements): New node, split from Distribution. | ||
| 9 | |||
| 10 | * cmdargs.texi (Action Arguments): -f reads interactive args. | ||
| 11 | |||
| 1 | 2003-09-21 Karl Berry <karl@gnu.org> | 12 | 2003-09-21 Karl Berry <karl@gnu.org> |
| 2 | 13 | ||
| 3 | * info.texi (] and [ commands): no period at end of section title. | 14 | * info.texi (] and [ commands): no period at end of section title. |
diff --git a/src/ChangeLog b/src/ChangeLog index e31e9fccc58..3c0264525a4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-09-22 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * intervals.c (graft_intervals_into_buffer): Correct the main loop | ||
| 4 | in the case where OVER is longer than UNDER. | ||
| 5 | |||
| 1 | 2003-09-22 Masatake YAMATO <jet@gyve.org> | 6 | 2003-09-22 Masatake YAMATO <jet@gyve.org> |
| 2 | 7 | ||
| 3 | * window.c (Fset_window_scroll_bars): Validate the value of | 8 | * window.c (Fset_window_scroll_bars): Validate the value of |