# HG changeset patch # User Richard M. Stallman # Date 1085264593 0 # Node ID e3f64aa0875d502b39ca2b43078b0bd89ed278de # Parent 1c3b8ce97c634e87e90bca02555ce44af31f5b2d *** empty log message *** diff -r 1c3b8ce97c63 -r e3f64aa0875d lisp/ChangeLog --- a/lisp/ChangeLog Sat May 22 22:22:38 2004 +0000 +++ b/lisp/ChangeLog Sat May 22 22:23:13 2004 +0000 @@ -1,5 +1,15 @@ 2004-05-22 Richard M. Stallman + * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes + as a close quote. + + * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case. + + * progmodes/idlw-shell.el (idlwave-shell-get-object-class): + Use assoc-string, not assoc-ignore-case. + + * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case. + * emacs-lisp/lisp.el (mark-defun, narrow-to-defun): If moving back then fwd gets a defun that ends before point, try again moving fwd then back. diff -r 1c3b8ce97c63 -r e3f64aa0875d lispref/ChangeLog --- a/lispref/ChangeLog Sat May 22 22:22:38 2004 +0000 +++ b/lispref/ChangeLog Sat May 22 22:23:13 2004 +0000 @@ -1,3 +1,22 @@ +2004-05-22 Richard M. Stallman + + * syntax.texi (Syntax Class Table): Word syntax not just for English. + + * streams.texi (Output Variables): Doc float-output-format. + + * searching.texi (Regexp Special): Nested repetition can be infloop. + + * eval.texi (Eval): Increasing max-lisp-eval-depth can cause + real stack overflow. + + * compile.texi: Minor cleanups. + +2004-05-22 Luc Teirlinck + + * lists.texi (Cons Cells): Explain dotted lists, true lists, + circular lists. + (List Elements): Explain handling of circular and dotted lists. + 2004-05-19 Thien-Thi Nguyen * modes.texi (Search-based Fontification): Fix typo. diff -r 1c3b8ce97c63 -r e3f64aa0875d src/ChangeLog --- a/src/ChangeLog Sat May 22 22:22:38 2004 +0000 +++ b/src/ChangeLog Sat May 22 22:23:13 2004 +0000 @@ -1,3 +1,23 @@ +2004-05-22 Richard M. Stallman + + * alloc.c (Fmake_string): Doc fix. + + * buffer.c (clone_per_buffer_values): Copy the alist of local vars, + and the alist pairs too. + + * casefiddle.c (casify_object): Return OBJ unchanged if not real char. + + * emacs.c (main): Update copyright year. + + * fileio.c (Fread_file_name): Expand DIR if not absolute. + + * insdel.c (del_range_2, replace_range): Don't write an anchor + if the gap is empty. + + * xdisp.c (try_scrolling): If scroll-up-aggressively or + scroll-down-aggressively is small but positive, put point + near the screen edge. + 2004-05-22 Juanma Barranquero * keymap.c (Fdefine_key): Doc fix.