*** empty log message ***

This commit is contained in:
Richard M. Stallman 2004-05-22 22:23:13 +00:00
parent 69623621a4
commit 71d5a208a4
3 changed files with 49 additions and 0 deletions

View file

@ -1,5 +1,15 @@
2004-05-22 Richard M. Stallman <rms@gnu.org>
* 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.

View file

@ -1,3 +1,22 @@
2004-05-22 Richard M. Stallman <rms@gnu.org>
* 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 <teirllm@dms.auburn.edu>
* 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 <ttn@gnu.org>
* modes.texi (Search-based Fontification): Fix typo.

View file

@ -1,3 +1,23 @@
2004-05-22 Richard M. Stallman <rms@gnu.org>
* 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 <lektu@terra.es>
* keymap.c (Fdefine_key): Doc fix.