aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-05-22 22:23:13 +0000
committerRichard M. Stallman2004-05-22 22:23:13 +0000
commit71d5a208a41e0982a9565d8cc215bd110fcac864 (patch)
tree1c346df7b8e676502451bbd701be3a116e3879ba
parent69623621a48d6430ffc1eb2c3b9f67b839047a25 (diff)
downloademacs-71d5a208a41e0982a9565d8cc215bd110fcac864.tar.gz
emacs-71d5a208a41e0982a9565d8cc215bd110fcac864.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lispref/ChangeLog19
-rw-r--r--src/ChangeLog20
3 files changed, 49 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3f0d74b79ff..aea6e7d6d10 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,15 @@
12004-05-22 Richard M. Stallman <rms@gnu.org> 12004-05-22 Richard M. Stallman <rms@gnu.org>
2 2
3 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
4 as a close quote.
5
6 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
7
8 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
9 Use assoc-string, not assoc-ignore-case.
10
11 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
12
3 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun): 13 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
4 If moving back then fwd gets a defun that ends before point, 14 If moving back then fwd gets a defun that ends before point,
5 try again moving fwd then back. 15 try again moving fwd then back.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index c2f4f188496..aa49c8d1d17 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,22 @@
12004-05-22 Richard M. Stallman <rms@gnu.org>
2
3 * syntax.texi (Syntax Class Table): Word syntax not just for English.
4
5 * streams.texi (Output Variables): Doc float-output-format.
6
7 * searching.texi (Regexp Special): Nested repetition can be infloop.
8
9 * eval.texi (Eval): Increasing max-lisp-eval-depth can cause
10 real stack overflow.
11
12 * compile.texi: Minor cleanups.
13
142004-05-22 Luc Teirlinck <teirllm@dms.auburn.edu>
15
16 * lists.texi (Cons Cells): Explain dotted lists, true lists,
17 circular lists.
18 (List Elements): Explain handling of circular and dotted lists.
19
12004-05-19 Thien-Thi Nguyen <ttn@gnu.org> 202004-05-19 Thien-Thi Nguyen <ttn@gnu.org>
2 21
3 * modes.texi (Search-based Fontification): Fix typo. 22 * modes.texi (Search-based Fontification): Fix typo.
diff --git a/src/ChangeLog b/src/ChangeLog
index bbbbd7ff8a0..68f74e457e9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,23 @@
12004-05-22 Richard M. Stallman <rms@gnu.org>
2
3 * alloc.c (Fmake_string): Doc fix.
4
5 * buffer.c (clone_per_buffer_values): Copy the alist of local vars,
6 and the alist pairs too.
7
8 * casefiddle.c (casify_object): Return OBJ unchanged if not real char.
9
10 * emacs.c (main): Update copyright year.
11
12 * fileio.c (Fread_file_name): Expand DIR if not absolute.
13
14 * insdel.c (del_range_2, replace_range): Don't write an anchor
15 if the gap is empty.
16
17 * xdisp.c (try_scrolling): If scroll-up-aggressively or
18 scroll-down-aggressively is small but positive, put point
19 near the screen edge.
20
12004-05-22 Juanma Barranquero <lektu@terra.es> 212004-05-22 Juanma Barranquero <lektu@terra.es>
2 22
3 * keymap.c (Fdefine_key): Doc fix. 23 * keymap.c (Fdefine_key): Doc fix.