aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/FOR-RELEASE9
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog25
-rw-r--r--lispref/ChangeLog4
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.
14To 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.
318SECTION READERS 321SECTION READERS
319---------------------------------- 322----------------------------------
320lispref/abbrevs.texi "Luc Teirlinck" 323lispref/abbrevs.texi "Luc Teirlinck"
321lispref/advice.texi 324lispref/advice.texi Joakim Verona <joakim@verona.se>
322lispref/anti.texi 325lispref/anti.texi
323lispref/backups.texi "Luc Teirlinck" 326lispref/backups.texi "Luc Teirlinck"
324lispref/buffers.texi "Luc Teirlinck" 327lispref/buffers.texi "Luc Teirlinck"
325lispref/calendar.texi 328lispref/calendar.texi Joakim Verona <joakim@verona.se>
326lispref/commands.texi "Luc Teirlinck" 329lispref/commands.texi "Luc Teirlinck"
327lispref/compile.texi "Luc Teirlinck" 330lispref/compile.texi "Luc Teirlinck"
328lispref/control.texi "Luc Teirlinck" 331lispref/control.texi "Luc Teirlinck"
diff --git a/etc/NEWS b/etc/NEWS
index 84a2728fcf0..d44e56ac860 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
2332of the character after a specified buffer position, taking account 2332of the character after a specified buffer position, taking account
2333of text properties as well as the character code. 2333of text properties as well as the character code.
2334It returns the value compatibly with char-syntax. 2334It returns the value compatibly with char-syntax, except
2335that the value can be a list (SYNTAX . MATCHER) which says
2336what 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 @@
12004-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
12004-11-08 Juri Linkov <juri@jurta.org> 182004-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 @@
12004-11-08 Richard M. Stallman <rms@gnu.org>
2
3 * syntax.texi (Syntax Table Functions): Add syntax-after.
4
12004-11-06 Lars Brinkhoff <lars@nocrew.org> 52004-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