diff options
| author | Stefan Monnier | 2002-09-10 06:05:36 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-09-10 06:05:36 +0000 |
| commit | 0a28e1ca57770b557ece46e77b99196ba8b5f941 (patch) | |
| tree | 2e33fedaea549521aa0e06537f487760cda34e08 | |
| parent | 6df42991d328df7a24fa433b2d4fa7e6fee77dc5 (diff) | |
| download | emacs-0a28e1ca57770b557ece46e77b99196ba8b5f941.tar.gz emacs-0a28e1ca57770b557ece46e77b99196ba8b5f941.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 67 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
2 files changed, 58 insertions, 17 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b8e31010b51..36cfa96ec99 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,8 +5,8 @@ | |||
| 5 | 5 | ||
| 6 | 2002-09-09 Markus Rost <rost@math.ohio-state.edu> | 6 | 2002-09-09 Markus Rost <rost@math.ohio-state.edu> |
| 7 | 7 | ||
| 8 | * simple.el (transient-mark-mode, line-number-mode, | 8 | * simple.el (transient-mark-mode, line-number-mode) |
| 9 | column-number-mode): Undo previous change. | 9 | (column-number-mode): Undo previous change because of bootstrapping. |
| 10 | 10 | ||
| 11 | 2002-09-10 Miles Bader <miles@gnu.org> | 11 | 2002-09-10 Miles Bader <miles@gnu.org> |
| 12 | 12 | ||
| @@ -21,13 +21,47 @@ | |||
| 21 | nil while executing macro to avoid triggering delete-selection-mode. | 21 | nil while executing macro to avoid triggering delete-selection-mode. |
| 22 | 22 | ||
| 23 | * simple.el (keyboard-quit): Set defining-kbd-macro to nil to | 23 | * simple.el (keyboard-quit): Set defining-kbd-macro to nil to |
| 24 | cancel defining keyboard macro when applicablex. | 24 | cancel defining keyboard macro when applicable. |
| 25 | |||
| 26 | 2002-09-09 Stefan Monnier <monnier@cs.yale.edu> | ||
| 27 | |||
| 28 | * derived.el (define-derived-mode): Add keyword arguments. | ||
| 29 | (derived-mode-make-docstring): Take abbrev and syntax table names. | ||
| 30 | |||
| 31 | * font-core.el (font-lock-change-mode): Just turn off font-lock-mode. | ||
| 32 | (font-lock-default-function): Change arg name. | ||
| 33 | |||
| 34 | * cus-start.el (transient-mark-mode): Delete. Done in simple.el. | ||
| 35 | |||
| 36 | * paren.el (show-paren-function): Use syntax-after. | ||
| 37 | |||
| 38 | * emacs-lisp/syntax.el (syntax-after): Delete. Moved to subr.el. | ||
| 39 | |||
| 40 | * subr.el (symbol-file): Also work for autoloaded funcs. | ||
| 41 | (syntax-after): New fun moved from syntax.el. | ||
| 42 | |||
| 43 | * find-file.el (ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook) | ||
| 44 | (ff-not-found-hook, ff-file-created-hook): Rename from *-hooks. | ||
| 45 | Update callers (but still run the old hooks as well). | ||
| 46 | |||
| 47 | * emacs-lisp/find-func.el (find-library-suffixes, find-library-name) | ||
| 48 | (find-library): New funs. | ||
| 49 | (find-function-search-for-symbol): Use it. | ||
| 50 | |||
| 51 | * emacs-lisp/bytecomp.el (byte-compile-file): Don't switch buffer. | ||
| 52 | |||
| 53 | * isearch.el (isearch-cmds): Add docstring. | ||
| 54 | (isearch-mouse-2): Lookup binding in the proper buffer. | ||
| 55 | Use call-interactively and remove the now useless `arg'. | ||
| 56 | (isearch-search-fun-function): New var. | ||
| 57 | (isearch-search-fun): New fun. | ||
| 58 | (isearch-search, isearch-lazy-highlight-search): Use it. | ||
| 25 | 59 | ||
| 26 | 2002-09-09 Stefan Monnier <monnier@cs.yale.edu> | 60 | 2002-09-09 Stefan Monnier <monnier@cs.yale.edu> |
| 27 | 61 | ||
| 28 | * simple.el (what-line): Don't hard-code 1. | 62 | * simple.el (what-line): Don't hard-code 1. |
| 29 | (transient-mark-mode, line-number-mode, column-number-mode): Use | 63 | (transient-mark-mode, line-number-mode, column-number-mode): |
| 30 | define-minor-mode. | 64 | Use define-minor-mode. |
| 31 | (do-auto-fill): Only ignore prefix if it's really empty. | 65 | (do-auto-fill): Only ignore prefix if it's really empty. |
| 32 | 66 | ||
| 33 | 2002-09-09 Markus Rost <rost@math.ohio-state.edu> | 67 | 2002-09-09 Markus Rost <rost@math.ohio-state.edu> |
| @@ -37,7 +71,7 @@ | |||
| 37 | 71 | ||
| 38 | 2002-09-09 Richard M. Stallman <rms@gnu.org> | 72 | 2002-09-09 Richard M. Stallman <rms@gnu.org> |
| 39 | 73 | ||
| 40 | * calendar/calendar.el (mouse-scroll-calendar-left) | 74 | * calendar/calendar.el (mouse-scroll-calendar-left) |
| 41 | (mouse-scroll-calendar-right, mouse-calendar-other-month): | 75 | (mouse-scroll-calendar-right, mouse-calendar-other-month): |
| 42 | New commands. | 76 | New commands. |
| 43 | (calendar-mode-line-format): Use them. | 77 | (calendar-mode-line-format): Use them. |
| @@ -45,7 +79,7 @@ | |||
| 45 | * emacs-lisp/bytecomp.el (byte-recompile-directory): | 79 | * emacs-lisp/bytecomp.el (byte-recompile-directory): |
| 46 | Set and then bind default-directory. | 80 | Set and then bind default-directory. |
| 47 | 81 | ||
| 48 | * startup.el (fancy-splash-head, normal-splash-screen): | 82 | * startup.el (fancy-splash-head, normal-splash-screen): |
| 49 | Change the messages that explain about GNU or GNU/Linux. | 83 | Change the messages that explain about GNU or GNU/Linux. |
| 50 | 84 | ||
| 51 | * info.el (Info-search): Add (point-min) to subfile positions | 85 | * info.el (Info-search): Add (point-min) to subfile positions |
| @@ -57,14 +91,14 @@ | |||
| 57 | 91 | ||
| 58 | 2002-09-09 Jari Aalto <jari.aalto@poboxes.com> | 92 | 2002-09-09 Jari Aalto <jari.aalto@poboxes.com> |
| 59 | 93 | ||
| 60 | * progmodes/cperl-mode.el (cperl-noscan-files-regexp): | 94 | * progmodes/cperl-mode.el (cperl-noscan-files-regexp): |
| 61 | In addition to RCS, exclude CVS directories. | 95 | In addition to RCS, exclude CVS directories. |
| 62 | 96 | ||
| 63 | * ls-lisp.el (ls-lisp-format-time-list): New variable. | 97 | * ls-lisp.el (ls-lisp-format-time-list): New variable. |
| 64 | (ls-lisp-format-time): Use it. | 98 | (ls-lisp-format-time): Use it. |
| 65 | 99 | ||
| 66 | * files.el (auto-mode-alist): Use sh-mode for .bash files. | 100 | * files.el (auto-mode-alist): Use sh-mode for .bash files. |
| 67 | 101 | ||
| 68 | 2002-09-09 Dave Love <d.love@dl.ac.uk> | 102 | 2002-09-09 Dave Love <d.love@dl.ac.uk> |
| 69 | 103 | ||
| 70 | * ps-print.el: Many doc fixes. | 104 | * ps-print.el: Many doc fixes. |
| @@ -87,7 +121,7 @@ | |||
| 87 | invisible newlines. Also include entire invisible lines beyond | 121 | invisible newlines. Also include entire invisible lines beyond |
| 88 | the stopping point. | 122 | the stopping point. |
| 89 | 123 | ||
| 90 | * cus-edit.el (custom-save-variables, custom-save-faces): | 124 | * cus-edit.el (custom-save-variables, custom-save-faces): |
| 91 | Clarify the comments written into .emacs. | 125 | Clarify the comments written into .emacs. |
| 92 | 126 | ||
| 93 | 2002-09-08 Markus Triska <triska@gmx.at> | 127 | 2002-09-08 Markus Triska <triska@gmx.at> |
| @@ -122,22 +156,23 @@ | |||
| 122 | 156 | ||
| 123 | * progmodes/compile.el (compile-internal): Add optional argument | 157 | * progmodes/compile.el (compile-internal): Add optional argument |
| 124 | no-async. | 158 | no-async. |
| 125 | 159 | ||
| 126 | * diff.el (diff): Add optional argument no-async, and use the | 160 | * diff.el (diff): Add optional argument no-async, and use the |
| 127 | above argument. | 161 | above argument. |
| 128 | 162 | ||
| 129 | * files.el (diff-buffer-with-file): Call diff synchronously, so we | 163 | * files.el (diff-buffer-with-file): Call diff synchronously, so we |
| 130 | don't delete the temporary file before diff has a chance to read | 164 | don't delete the temporary file before diff has a chance to read |
| 131 | it. | 165 | it. |
| 132 | 166 | ||
| 133 | * ibuf-ext.el (ibuffer-diff-with-file): Just call `diff-buffer-with-file'. | 167 | * ibuf-ext.el (ibuffer-diff-with-file): Just call |
| 168 | `diff-buffer-with-file'. | ||
| 134 | 169 | ||
| 135 | 2002-09-07 John Paul Wallington <jpw@shootybangbang.com> | 170 | 2002-09-07 John Paul Wallington <jpw@shootybangbang.com> |
| 136 | 171 | ||
| 137 | * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix. | 172 | * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix. |
| 138 | 173 | ||
| 139 | * emacs-lisp/find-func.el (find-function-recenter-line): Add | 174 | * emacs-lisp/find-func.el (find-function-recenter-line): |
| 140 | custom type. Doc fix. | 175 | Add custom type. Doc fix. |
| 141 | 176 | ||
| 142 | 2002-09-06 Stefan Monnier <monnier@cs.yale.edu> | 177 | 2002-09-06 Stefan Monnier <monnier@cs.yale.edu> |
| 143 | 178 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 4f44323207e..5d3f6cddb88 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-09-10 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete. | ||
| 4 | (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1. | ||
| 5 | (re_match_2_internal): Be more careful with infinite loops. | ||
| 6 | |||
| 1 | 2002-09-10 Kim F. Storm <storm@cua.dk> | 7 | 2002-09-10 Kim F. Storm <storm@cua.dk> |
| 2 | 8 | ||
| 3 | * macros.c (end_kbd_macro): New function. | 9 | * macros.c (end_kbd_macro): New function. |
| @@ -26,7 +32,7 @@ | |||
| 26 | (syms_of_macros): DEFVAR_INT it (needed by kmacro). | 32 | (syms_of_macros): DEFVAR_INT it (needed by kmacro). |
| 27 | 33 | ||
| 28 | * macros.h (executing_macro_index): Change type to EMACS_INT. | 34 | * macros.h (executing_macro_index): Change type to EMACS_INT. |
| 29 | 35 | ||
| 30 | 2002-09-06 Richard M. Stallman <rms@gnu.org> | 36 | 2002-09-06 Richard M. Stallman <rms@gnu.org> |
| 31 | 37 | ||
| 32 | * casetab.c (set_case_table): Make canon table point to eqv table. | 38 | * casetab.c (set_case_table): Make canon table point to eqv table. |