]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Tue, 21 Dec 2004 11:49:53 +0000 (11:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 21 Dec 2004 11:49:53 +0000 (11:49 +0000)
etc/ChangeLog
etc/NEWS
lisp/ChangeLog
lispref/ChangeLog
src/ChangeLog

index c148f1a37a0a4be54ce730272487f0eaaec85d61..f0123a8b90db1c1d9a77e0fb7b37eac267e7997d 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-21  Richard M. Stallman  <rms@gnu.org>
+
+       * DISTRIB: Don't say "freeware".
+
 2004-12-15  Nick Roberts  <nickrob@snap.net.nz>
 
        * DEBUG: Change printing example to break on a procedure name.
index f343f563a0502043a7ddf784a6f92cf85dbe0121..778754d9d17b815ab5e26fe28867c6db1dd98f19 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2414,7 +2414,8 @@ back the match can start; this is a way to keep it from taking too long.
 +++
 ** New functions `make-progress-reporter', `progress-reporter-update',
 `progress-reporter-force-update' and `progress-reporter-done' provide
-a simple and efficient way of printing progress messages to the user.
+a simple and efficient way for a command to present progress messages
+for the user.
 
 ---
 ** To manipulate the File menu using easy-menu, you must specify the
index 8341f1d4994a1baaf3642113fcbff8b014988918..b210a675939decbef64ad05972dcc76bb9940fd4 100644 (file)
@@ -1,3 +1,27 @@
+2004-12-21  Richard M. Stallman  <rms@gnu.org>
+
+       * faces.el (escape-glyph): Use blue against light foreground.
+
+       * simple.el (undo-outer-limit-truncate): New function.
+       (undo-outer-limit-function): Use undo-outer-limit-truncate.
+
+2004-12-21  Eli Barzilay  <eli@barzilay.org>
+       
+       * calculator.el: (calculator-radix-grouping-mode)
+       (calculator-radix-grouping-digits)
+       (calculator-radix-grouping-separator):
+       New defcustoms for the new radix grouping mode functionality.
+       (calculator-mode-hook): Now used in electric mode too.
+       (calculator-mode-map): Some new keys.
+       (calculator-message): New function.  Some new calls.
+       (calculator-string-to-number): New function,
+       (calculator-curnum-value): Use it.
+       (calculator-rotate-displayer, calculator-rotate-displayer-back)
+       (calculator-displayer-prev, calculator-displayer-next):
+       Change digit group size when in radix mode.
+       (calculator-number-to-string): Renamed from calculator-num-to-string.
+       Now deals with digit grouping in radix mode.
+
 2004-12-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
 
        * calendar/calendar.el (view-other-diary-entries): Add autoload.
index 6944d2af6c52a28cd70847171fbd244e7ba9cb3f..247309624de3425e178c3ded5392ed04e00edad3 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-21  Richard M. Stallman  <rms@gnu.org>
+
+       * commands.texi (Event Input Misc): Add while-no-input.
+
 2004-12-11  Richard M. Stallman  <rms@gnu.org>
 
        * display.texi (Line Height): Rewrite text for clarity.
index 33d6f42799c27545b62271f6bc0c83d460dc03fd..c2e81ad6a17565094a99d3164f09983f3b514887 100644 (file)
@@ -1,3 +1,39 @@
+2004-12-21  Richard M. Stallman  <rms@gnu.org>
+
+       * eval.c (unwind_to_catch): Clear immediate_quit.
+
+       * xdisp.c (get_next_display_element): Display codes 8a0 and 8ad
+       specially as `\ ' and `\-'.
+
+       * keyboard.c (kbd_buffer_store_event_hold):
+       In the code for while-no-input, handle immediate_quit.
+
+       * alloc.c (Fgarbage_collect): Update call to truncate_undo_list.
+       Call that at the very start.
+       (undo_limit, undo_strong_limit, undo_outer_limit): Moved to undo.c.
+       (syms_of_alloc): Don't define undo-limit,
+       undo-strong-limit and undo-outer-limit here.
+
+       * undo.c (truncate_undo_list): Return void.
+       Take just one argument, the buffer.
+       Make it current, and inhibit recursive GC.
+       Access and update the undo list directly; return void.
+       Refer to the undo...limit variables directly.
+       Test undo_outer_limit only after counting the whole current command.
+       When it's exceeded, call the function in undo-outer-limit-function.
+       (undo_limit, undo_strong_limit, undo_outer_limit): From alloc.c.
+       (Vundo_outer_limit_function): New variable.
+       (syms_of_undo): Define undo-limit, undo-strong-limit
+       and undo-outer-limit here, and undo-outer-limit-function.
+       Doc fixes.
+
+       * lisp.h (truncate_undo_list): Update decl.
+
+2004-12-21  Piet van Oostrum  <piet@cs.uu.nl>
+
+       * fileio.c (Fread_file_name): Delete duplicates in
+       file-name-history when history_delete_duplicates is true.
+
 2004-12-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * macterm.c (mac_do_list_fonts): Fix memory leak