diff options
| author | Richard M. Stallman | 2003-01-13 08:23:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-01-13 08:23:46 +0000 |
| commit | 3e8cf2ea923e54194e729dc7ff6c95197c74e7cc (patch) | |
| tree | e8dd18e172fe138f9681d7170e36bf7098c6b6aa | |
| parent | 60ab677b331335cd43cc0b245e9e27d4c3ff4ba7 (diff) | |
| download | emacs-3e8cf2ea923e54194e729dc7ff6c95197c74e7cc.tar.gz emacs-3e8cf2ea923e54194e729dc7ff6c95197c74e7cc.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 26 | ||||
| -rw-r--r-- | lispref/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
3 files changed, 47 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1fe801ac6d1..d3374dc7c73 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2003-01-13 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * apropos.el (apropos-documentation-property): New function. | ||
| 4 | (apropos): Use apropos-documentation-property. | ||
| 5 | |||
| 6 | * files.el (mode-line-process): Mark as risky. | ||
| 7 | |||
| 8 | * help.el (where-is): Catch errors in indirect-function. | ||
| 9 | |||
| 10 | * server.el (server-process-filter): Comment out -eval. | ||
| 11 | Don't switch buffers if inside isearch or minibuffer. | ||
| 12 | |||
| 13 | * progmodes/compile.el (compilation-revert-buffer): | ||
| 14 | If buffer has a file, revert it in the normal way. | ||
| 15 | |||
| 16 | * term/x-win.el: Require fontset conditionally again. | ||
| 17 | |||
| 1 | 2003-01-13 Kim F. Storm <storm@cua.dk> | 18 | 2003-01-13 Kim F. Storm <storm@cua.dk> |
| 2 | 19 | ||
| 3 | * ido.el (ido-enable-tramp-completion): New defcustom. | 20 | * ido.el (ido-enable-tramp-completion): New defcustom. |
| @@ -174,6 +191,8 @@ | |||
| 174 | 191 | ||
| 175 | 2003-01-05 Richard M. Stallman <rms@gnu.org> | 192 | 2003-01-05 Richard M. Stallman <rms@gnu.org> |
| 176 | 193 | ||
| 194 | * obsolete/uncompress.el: Display message that this package is obsolete. | ||
| 195 | |||
| 177 | * isearch.el (isearch-repeat): Error if try to repeat search and | 196 | * isearch.el (isearch-repeat): Error if try to repeat search and |
| 178 | there was no previous search. | 197 | there was no previous search. |
| 179 | 198 | ||
| @@ -191,9 +210,16 @@ | |||
| 191 | 210 | ||
| 192 | 2003-01-05 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change) | 211 | 2003-01-05 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change) |
| 193 | 212 | ||
| 213 | <<<<<<< ChangeLog | ||
| 214 | * mail/sendmail.el (mail-font-lock-keywords): | ||
| 215 | Match multiline In-Reply-To and X-*. | ||
| 216 | * mail/rmail.el (rmail-font-lock-keywords): | ||
| 217 | Match multiline In-Reply-To and X-*. | ||
| 218 | ======= | ||
| 194 | * mail/sendmail.el (mail-font-lock-keywords): | 219 | * mail/sendmail.el (mail-font-lock-keywords): |
| 195 | * mail/rmail.el (rmail-font-lock-keywords): Match multiline | 220 | * mail/rmail.el (rmail-font-lock-keywords): Match multiline |
| 196 | In-Reply-To and X-*. | 221 | In-Reply-To and X-*. |
| 222 | >>>>>>> 1.4713 | ||
| 197 | 223 | ||
| 198 | 2003-01-05 Mark A. Hershberger <mah@everybody.org> | 224 | 2003-01-05 Mark A. Hershberger <mah@everybody.org> |
| 199 | 225 | ||
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index e71cc84a86a..5eb19f363ac 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2003-01-13 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * text.texi (Changing Properties): Say string indices are origin-0. | ||
| 4 | |||
| 5 | * positions.texi (Screen Lines) <compute-motion>: | ||
| 6 | Correct order of elts in return value. | ||
| 7 | |||
| 8 | * keymaps.texi (Changing Key Bindings) <define-key>: Mention | ||
| 9 | how to define a default binding. | ||
| 10 | |||
| 1 | 2002-12-07 Markus Rost <rost@math.ohio-state.edu> | 11 | 2002-12-07 Markus Rost <rost@math.ohio-state.edu> |
| 2 | 12 | ||
| 3 | * loading.texi (Unloading): Fix recent change for load-history. | 13 | * loading.texi (Unloading): Fix recent change for load-history. |
diff --git a/src/ChangeLog b/src/ChangeLog index 7314d53fc30..ae00961f241 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2003-01-13 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (minibuffer_completion_contents): | ||
| 4 | Error if point is inside prompt. | ||
| 5 | |||
| 6 | * keyboard.c (command_loop_1): Don't redisplay directly | ||
| 7 | if there's a post-command-hook. | ||
| 8 | |||
| 9 | * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix. | ||
| 10 | (Fdo_auto_save): Add gcpros around Ffile_name_directory. | ||
| 11 | |||
| 1 | 2003-01-12 Kim F. Storm <storm@cua.dk> | 12 | 2003-01-12 Kim F. Storm <storm@cua.dk> |
| 2 | 13 | ||
| 3 | * process.h (struct Lisp_Process): New member private_vars. | 14 | * process.h (struct Lisp_Process): New member private_vars. |