diff options
| author | Richard M. Stallman | 2004-11-08 17:00:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-08 17:00:42 +0000 |
| commit | 1efc19ebfa52ff89bf07c2a8aebb92c4deef0a36 (patch) | |
| tree | 1d59380418342ef1ef8dee5986fa860f31794953 | |
| parent | bbf416903285fdea95ee181dd65cb12332070b54 (diff) | |
| download | emacs-1efc19ebfa52ff89bf07c2a8aebb92c4deef0a36.tar.gz emacs-1efc19ebfa52ff89bf07c2a8aebb92c4deef0a36.zip | |
*** empty log message ***
| -rw-r--r-- | admin/FOR-RELEASE | 9 | ||||
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 25 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 |
4 files changed, 35 insertions, 7 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index e5e719f9037..99f78af4e25 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -10,6 +10,8 @@ Tasks needed before the next release. | |||
| 10 | 10 | ||
| 11 | ** Let mouse-1 follow links. | 11 | ** Let mouse-1 follow links. |
| 12 | 12 | ||
| 13 | ** Make Rmail find the best version of movemail. | ||
| 14 | To be done by Sergey Poznyakoff <gray@Mirddin.farlep.net>. | ||
| 13 | 15 | ||
| 14 | * FATAL ERRORS | 16 | * FATAL ERRORS |
| 15 | 17 | ||
| @@ -30,7 +32,6 @@ invalid pointer from string_free_list. | |||
| 30 | 32 | ||
| 31 | ** Clean up flymake.el to follow Emacs Lisp conventions. | 33 | ** Clean up flymake.el to follow Emacs Lisp conventions. |
| 32 | 34 | ||
| 33 | |||
| 34 | * GTK RELATED BUGS | 35 | * GTK RELATED BUGS |
| 35 | 36 | ||
| 36 | ** Make GTK scrollbars behave like others w.r.t. overscrolling. | 37 | ** Make GTK scrollbars behave like others w.r.t. overscrolling. |
| @@ -244,6 +245,8 @@ Electric-pop-up-window can use it. | |||
| 244 | 245 | ||
| 245 | * DOCUMENTATION | 246 | * DOCUMENTATION |
| 246 | 247 | ||
| 248 | ** Document Custom Themes. | ||
| 249 | |||
| 247 | ** Finish updating the Emacs Lisp manual. | 250 | ** Finish updating the Emacs Lisp manual. |
| 248 | 251 | ||
| 249 | ** Update the Emacs manual. | 252 | ** Update the Emacs manual. |
| @@ -318,11 +321,11 @@ names of the people who have checked it. | |||
| 318 | SECTION READERS | 321 | SECTION READERS |
| 319 | ---------------------------------- | 322 | ---------------------------------- |
| 320 | lispref/abbrevs.texi "Luc Teirlinck" | 323 | lispref/abbrevs.texi "Luc Teirlinck" |
| 321 | lispref/advice.texi | 324 | lispref/advice.texi Joakim Verona <joakim@verona.se> |
| 322 | lispref/anti.texi | 325 | lispref/anti.texi |
| 323 | lispref/backups.texi "Luc Teirlinck" | 326 | lispref/backups.texi "Luc Teirlinck" |
| 324 | lispref/buffers.texi "Luc Teirlinck" | 327 | lispref/buffers.texi "Luc Teirlinck" |
| 325 | lispref/calendar.texi | 328 | lispref/calendar.texi Joakim Verona <joakim@verona.se> |
| 326 | lispref/commands.texi "Luc Teirlinck" | 329 | lispref/commands.texi "Luc Teirlinck" |
| 327 | lispref/compile.texi "Luc Teirlinck" | 330 | lispref/compile.texi "Luc Teirlinck" |
| 328 | lispref/control.texi "Luc Teirlinck" | 331 | lispref/control.texi "Luc Teirlinck" |
| @@ -2331,7 +2331,9 @@ configuration files. | |||
| 2331 | ** The new function syntax-after returns the syntax code | 2331 | ** The new function syntax-after returns the syntax code |
| 2332 | of the character after a specified buffer position, taking account | 2332 | of the character after a specified buffer position, taking account |
| 2333 | of text properties as well as the character code. | 2333 | of text properties as well as the character code. |
| 2334 | It returns the value compatibly with char-syntax. | 2334 | It returns the value compatibly with char-syntax, except |
| 2335 | that the value can be a list (SYNTAX . MATCHER) which says | ||
| 2336 | what the matching character is. | ||
| 2335 | 2337 | ||
| 2336 | +++ | 2338 | +++ |
| 2337 | ** The new primitive `get-internal-run-time' returns the processor | 2339 | ** The new primitive `get-internal-run-time' returns the processor |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ca644d9ec6a..cce61c85b87 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2004-11-08 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (syntax-after): Doc fix. | ||
| 4 | |||
| 5 | * paren.el (show-paren-function): Change calls to syntax-after | ||
| 6 | for new way of returning the value. | ||
| 7 | |||
| 8 | * menu-bar.el (menu-bar-file-menu): Make this the real name | ||
| 9 | and menu-bar-files-menu the alias. Use the former. | ||
| 10 | (global-map): Use `file', not `files', as the symbol. | ||
| 11 | |||
| 12 | * info.el (Info-revert-find-node): Don't use beginning-of-buffer. | ||
| 13 | |||
| 14 | * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd): | ||
| 15 | Don't use beginning-of-buffer. | ||
| 16 | (filesets-cmd-show-result): Use with-no-warnings. | ||
| 17 | |||
| 1 | 2004-11-08 Juri Linkov <juri@jurta.org> | 18 | 2004-11-08 Juri Linkov <juri@jurta.org> |
| 2 | 19 | ||
| 3 | * progmodes/compile.el (compile): Don't overwrite last command in | 20 | * progmodes/compile.el (compile): Don't overwrite last command in |
| @@ -36,12 +53,14 @@ | |||
| 36 | 53 | ||
| 37 | * simple.el (next-error group, face): Move before first use. | 54 | * simple.el (next-error group, face): Move before first use. |
| 38 | (next-error-highlight, next-error-highlight-no-select): Likewise. | 55 | (next-error-highlight, next-error-highlight-no-select): Likewise. |
| 39 | (line-move-invisible-p): Renamed from line-move-invisible. | 56 | |
| 57 | * simple.el (line-move-invisible-p): Renamed from line-move-invisible. | ||
| 40 | (line-move): New args NOERROR and TO-END. | 58 | (line-move): New args NOERROR and TO-END. |
| 41 | Return t if if succeed in moving specified number of lines. | 59 | Return t if if succeed in moving specified number of lines. |
| 42 | (move-end-of-line): New function. | 60 | (move-end-of-line): New function. |
| 43 | (beginning-of-buffer-other-window, end-of-buffer-other-window): | 61 | |
| 44 | Use with-no-warnings. | 62 | * simple.el (beginning-of-buffer-other-window): Use with-no-warnings. |
| 63 | (end-of-buffer-other-window): Likewise. | ||
| 45 | 64 | ||
| 46 | * simple.el (line-move-ignore-invisible): Default to t. | 65 | * simple.el (line-move-ignore-invisible): Default to t. |
| 47 | 66 | ||
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 197c7217785..4491956f06f 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-11-08 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * syntax.texi (Syntax Table Functions): Add syntax-after. | ||
| 4 | |||
| 1 | 2004-11-06 Lars Brinkhoff <lars@nocrew.org> | 5 | 2004-11-06 Lars Brinkhoff <lars@nocrew.org> |
| 2 | 6 | ||
| 3 | * os.texi (Processor Run Time): New section documenting | 7 | * os.texi (Processor Run Time): New section documenting |