diff options
| author | Richard M. Stallman | 2004-11-02 09:28:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-02 09:28:48 +0000 |
| commit | 29bb7127341d58cdda011520188930dd92b630ab (patch) | |
| tree | 190b2d3ccc3bae6b1172196ff5ca528ae6b62cd2 | |
| parent | ea346a5d91b751cd963b952201e1b1f0754a0d60 (diff) | |
| download | emacs-29bb7127341d58cdda011520188930dd92b630ab.tar.gz emacs-29bb7127341d58cdda011520188930dd92b630ab.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 28 | ||||
| -rw-r--r-- | src/ChangeLog | 23 |
2 files changed, 51 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 853daf41a26..b22332ef287 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,27 @@ | |||
| 1 | 2004-11-02 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/elp.el (elp-instrument-function): | ||
| 4 | Use called-interactively-p. | ||
| 5 | |||
| 6 | * emacs-lisp/easymenu.el (easy-menu-intern): | ||
| 7 | Don't downcase; rather, case-flip the first letter of each word. | ||
| 8 | |||
| 9 | * emacs-lisp/easy-mmode.el (define-minor-mode): | ||
| 10 | Use called-interactively-p. | ||
| 11 | |||
| 12 | * emacs-lisp/bytecomp.el (byte-compile-warning-types): | ||
| 13 | Add interactive-only. | ||
| 14 | (byte-compile-warnings): Add interactive-only as option. | ||
| 15 | (byte-compile-interactive-only-functions): New variable. | ||
| 16 | (byte-compile-form): Warn about calls to functions | ||
| 17 | in byte-compile-interactive-only-functions. | ||
| 18 | |||
| 19 | * emacs-lisp/autoload.el (update-file-autoloads): | ||
| 20 | Don't use interactive-p; take new arg SAVE-AFTER. | ||
| 21 | |||
| 22 | * emacs-lisp/advice.el (ad-make-advised-definition): | ||
| 23 | Use called-interactively-p. | ||
| 24 | |||
| 1 | 2004-11-02 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 25 | 2004-11-02 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 26 | ||
| 3 | * files.el (find-file-existing): New function. | 27 | * files.el (find-file-existing): New function. |
| @@ -91,6 +115,10 @@ | |||
| 91 | 115 | ||
| 92 | 2004-11-01 Richard M. Stallman <rms@gnu.org> | 116 | 2004-11-01 Richard M. Stallman <rms@gnu.org> |
| 93 | 117 | ||
| 118 | * textmodes/ispell.el (ispell-word): Don't use interactive-p. | ||
| 119 | |||
| 120 | * textmodes/flyspell.el (flyspell-word): Don't use interactive-p. | ||
| 121 | |||
| 94 | * allout.el (allout group): Add :version. | 122 | * allout.el (allout group): Add :version. |
| 95 | (allout-init): Don't use interactive-p. | 123 | (allout-init): Don't use interactive-p. |
| 96 | (allout-ascend-to-depth, allout-ascend, allout-end-of-level) | 124 | (allout-ascend-to-depth, allout-ascend, allout-end-of-level) |
diff --git a/src/ChangeLog b/src/ChangeLog index a957c28f4e6..20a3a8e2511 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2004-11-02 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * insdel.c (replace_range_2): New function. | ||
| 4 | |||
| 5 | * casefiddle.c (casify_region): Handle changes in byte-length | ||
| 6 | using replace_range_2. | ||
| 7 | |||
| 8 | * emacs.c (USAGE3): Delete --horizontal-scroll-bars, -hb. | ||
| 9 | |||
| 10 | * xdisp.c (back_to_previous_visible_line_start): | ||
| 11 | Subtract 1 from pos when checking previous newline for invisibility. | ||
| 12 | |||
| 13 | * window.c (window_scroll_pixel_based): Update preserve_y | ||
| 14 | for header line if any. | ||
| 15 | (Fscroll_left, Fscroll_right): Don't call interactive_p; | ||
| 16 | use a new second argument instead. | ||
| 17 | |||
| 18 | * eval.c (Fcall_interactive_p): New function. | ||
| 19 | (interactive_p): Don't test INTERACTIVE here. | ||
| 20 | (Finteractive_p): Doc fix. | ||
| 21 | |||
| 22 | * eval.c (Feval): Abort if INPUT_BLOCKED_P. | ||
| 23 | |||
| 1 | 2004-11-02 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change) | 24 | 2004-11-02 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change) |
| 2 | 25 | ||
| 3 | * w32fns.c (w32_font_match): Use fast_string_match_ignore_case for | 26 | * w32fns.c (w32_font_match): Use fast_string_match_ignore_case for |