aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-11-03 21:48:00 +0000
committerRichard M. Stallman2005-11-03 21:48:00 +0000
commite082564eaedf9df7f1828cd580a2cf716fd9f35a (patch)
tree7fe3615eea30780e2cc211ea7fa9f4e588394f47
parent987cee972836fa81ef31d19736fe64b927f8f080 (diff)
downloademacs-e082564eaedf9df7f1828cd580a2cf716fd9f35a.tar.gz
emacs-e082564eaedf9df7f1828cd580a2cf716fd9f35a.zip
*** empty log message ***
-rw-r--r--admin/FOR-RELEASE5
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lispref/ChangeLog4
-rw-r--r--man/ChangeLog4
-rw-r--r--src/ChangeLog10
6 files changed, 48 insertions, 3 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index be1a2f737d1..93f0064b152 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -44,6 +44,9 @@ invalid pointer from string_free_list.
44 44
45* BUGS 45* BUGS
46 46
47** Make where-is-internal detect when a key is shadowed by a shorter
48prefix key that prevents you from entering it.
49
47** Clean up the confusion about what `unspecified' means 50** Clean up the confusion about what `unspecified' means
48in the face defaults for new frames. 51in the face defaults for new frames.
49 52
@@ -56,7 +59,7 @@ Seems to be a problem in sys_select in w32proc.c.
56 59
57* DOCUMENTATION 60* DOCUMENTATION
58 61
59** Update man/info.texi. 62** Check man/info.texi.
60 63
61** Add missing years in copyright notices of all files. 64** Add missing years in copyright notices of all files.
62 65
diff --git a/etc/NEWS b/etc/NEWS
index 4d7ce10fefe..ef4b8529e9e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -240,8 +240,9 @@ in the region, rather than on all complete lines in the region.
240 240
241+++ 241+++
242** A prefix argument is no longer required to repeat a jump to a 242** A prefix argument is no longer required to repeat a jump to a
243previous mark, i.e. C-u C-SPC C-SPC C-SPC ... cycles through the 243previous mark if you set `set-mark-command-repeat-pop' to t. I.e. C-u
244mark ring. Use C-u C-u C-SPC to set the mark immediately after a jump. 244C-SPC C-SPC C-SPC ... cycles through the mark ring. Use C-u C-u C-SPC
245to set the mark immediately after a jump.
245 246
246+++ 247+++
247** The info-search bindings on C-h C-f, C-h C-k and C-h C-i 248** The info-search bindings on C-h C-f, C-h C-k and C-h C-i
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index abe4e2acc22..967b723b1ec 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,26 @@
12005-11-03 Richard M. Stallman <rms@gnu.org>
2
3 * wid-edit.el (key-sequence): New widget type.
4
5 * simple.el (set-mark-command-repeat-pop): New variable.
6 (set-mark-command): Only interpret plan C-@ after a pop as a pop
7 if set-mark-command-repeat-pop is true.
8
9 * info.el (Info-fontify-node): Don't display extra "see" if there
10 already is one here.
11
12 * mouse.el: Fix special handling of DEL after dragging a region:
13 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
14 (mouse-region-delete-keys): Add [backspace].
15
16 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
17
18 * textmodes/ispell.el (ispell-command-loop): Change `i' description
19 not to assume it pertains to an affix.
20
21 * textmodes/flyspell.el (flyspell-post-command-hook):
22 Bind deactivate-mark to prevent deactivation.
23
12005-11-03 Lars Hansen <larsh@soem.dk> 242005-11-03 Lars Hansen <larsh@soem.dk>
2 * dired-x.el: Add menu bindings for dired-do-find-marked-files, 25 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
3 dired-do-relsymlink, dired-flag-extension, dired-mark-extension, 26 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 0b8b80760a2..b848c2641fa 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12005-11-03 Richard M. Stallman <rms@gnu.org>
2
3 * variables.texi (Frame-Local Variables): Small clarification.
4
12005-10-29 Chong Yidong <cyd@stupidchicken.com> 52005-10-29 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * os.texi (Init File): Document ~/.emacs.d/init.el. 7 * os.texi (Init File): Document ~/.emacs.d/init.el.
diff --git a/man/ChangeLog b/man/ChangeLog
index c41066a9314..8d542180cf5 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12005-11-03 Richard M. Stallman <rms@gnu.org>
2
3 * mark.texi (Mark Ring): Mention set-mark-command-repeat-pop.
4
12005-11-01 Bill Wohler <wohler@newt.com> 52005-11-01 Bill Wohler <wohler@newt.com>
2 6
3 * help.texi (Help Mode): Fix typo. 7 * help.texi (Help Mode): Fix typo.
diff --git a/src/ChangeLog b/src/ChangeLog
index fd202cfd53e..25fb3851afd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12005-11-03 Richard M. Stallman <rms@gnu.org>
2
3 * window.c (Fenlarge_window): Rename SIDE to HORIZONTAL.
4 (enlarge_window): Rename WIDTHFLAG to HORIZ_FLAG.
5 (CURBEG, CURSIZE): Use HORIZ_FLAG instead of WIDTHFLAG.
6
7 * sheap.c (STATIC_HEAP_SIZE): Increment both definitions.
8
9 * alloc.c (refill_memory_reserve): Move decl out of conditionals.
10
12005-11-03 Stefan Monnier <monnier@iro.umontreal.ca> 112005-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2 12
3 * window.c (Fdisplay_buffer): Fix last change to not use 13 * window.c (Fdisplay_buffer): Fix last change to not use