aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-28 03:44:37 +0000
committerRichard M. Stallman2005-12-28 03:44:37 +0000
commit6281e1e84dc30a52084fa6d9a8b4e6291182415c (patch)
treec2e8c15c363ceb8eb487fb32e4a075bd3a9c7068
parent721b7d9ee61e436d012527664fee8acc152f4715 (diff)
downloademacs-6281e1e84dc30a52084fa6d9a8b4e6291182415c.tar.gz
emacs-6281e1e84dc30a52084fa6d9a8b4e6291182415c.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog16
-rw-r--r--src/ChangeLog6
2 files changed, 17 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e715452871b..fc9221e9a84 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,10 @@
12005-12-28 Juri Linkov <juri@jurta.org> 12005-12-27 Richard M. Stallman <rms@gnu.org>
2
3 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
4 mouse-2, go back to previously selected window, so it's selected
5 when mouse-2 command runs.
6
72005-12-27 Juri Linkov <juri@jurta.org>
2 8
3 * descr-text.el (describe-text-sexp): Use square brackets for 9 * descr-text.el (describe-text-sexp): Use square brackets for
4 button [Show] to distinguish it from the property value `show'. 10 button [Show] to distinguish it from the property value `show'.
@@ -27,7 +33,7 @@
27 * textmodes/flyspell.el (flyspell-external-point-words): 33 * textmodes/flyspell.el (flyspell-external-point-words):
28 New criteria for finding the misspelling in the buffer. 34 New criteria for finding the misspelling in the buffer.
29 35
302005-12-28 Nick Roberts <nickrob@snap.net.nz> 362005-12-27 Nick Roberts <nickrob@snap.net.nz>
31 37
32 * help-mode.el (help-insert-string): Set help-xref-stack-item 38 * help-mode.el (help-insert-string): Set help-xref-stack-item
33 rather than call help-setup-xref. 39 rather than call help-setup-xref.
@@ -35,7 +41,7 @@
35 * descr-text.el (describe-char): Revert previous changes for 41 * descr-text.el (describe-char): Revert previous changes for
36 optional buffer argument. 42 optional buffer argument.
37 43
382005-12-28 Juri Linkov <juri@jurta.org> 442005-12-27 Juri Linkov <juri@jurta.org>
39 45
40 * help-mode.el (help-insert-string): New function. Save buffer 46 * help-mode.el (help-insert-string): New function. Save buffer
41 contents in cases where it is impossible to recompute the old 47 contents in cases where it is impossible to recompute the old
@@ -70,13 +76,13 @@
70 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys): 76 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
71 Don't use the `args' argument of lazy-completion-table. 77 Don't use the `args' argument of lazy-completion-table.
72 78
732005-12-27 Nick Roberts <nickrob@snap.net.nz> 792005-12-26 Nick Roberts <nickrob@snap.net.nz>
74 80
75 * descr-text.el (describe-char): Add optional argument for buffer. 81 * descr-text.el (describe-char): Add optional argument for buffer.
76 Set buffer appropriately. Call help-setup-xref. 82 Set buffer appropriately. Call help-setup-xref.
77 Suggested by Stefan Monnier. 83 Suggested by Stefan Monnier.
78 84
792005-12-27 Juri Linkov <juri@jurta.org> 852005-12-26 Juri Linkov <juri@jurta.org>
80 86
81 * descr-text.el: Require `help-fns' at runtime. Don't require 87 * descr-text.el: Require `help-fns' at runtime. Don't require
82 `button' for byte compilation. 88 `button' for byte compilation.
diff --git a/src/ChangeLog b/src/ChangeLog
index c73d490c8ac..da18386f37f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12005-12-27 Richard M. Stallman <rms@gnu.org> 12005-12-27 Richard M. Stallman <rms@gnu.org>
2 2
3 * lread.c (readevalloop): Set PT and ZV in the proper buffer,
4 not the current one.
5
6 * minibuf.c (Fminibuffer_message): Doc fix.
7 (read_minibuf): Set current_buffer->enable_multibyte_characters sooner.
8
3 * eval.c (do_autoload): Ignore elements of Vautoload_queue 9 * eval.c (do_autoload): Ignore elements of Vautoload_queue
4 where car is not symbol. 10 where car is not symbol.
5 11