From: Richard M. Stallman Date: Sun, 20 Aug 2006 12:19:33 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~948 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ce6297137d3f5ae98335f35119faae72d04d6a44;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 570db4a7656..4b8f564a042 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -4665,6 +4665,7 @@ keymap alist to this list. *** The definition of a key-binding passed to define-key can use XEmacs-style key-sequences, such as [(control a)]. + ** Abbrev changes: +++ @@ -5493,6 +5494,9 @@ been renamed to `disabled-command-function'. The variable *** `emacsserver' now runs `pre-command-hook' and `post-command-hook' when it receives a request from emacsclient. ++++ +*** `current-idle-time' reports how long Emacs has been idle. + ** Lisp file loading changes: +++ diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e5692b08fb7..2fca315c263 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2006-08-20 Richard Stallman + + * simple.el (line-number-at-pos): Doc fix. + + * emacs-lisp/timer.el (run-with-idle-timer): Pass t to + timer-activate-when-idle, so timer can run before Emacs becomes + non-idle again. + 2006-08-18 Yoni Rabkin Katzenell (tiny change) * whitespace.el (whitespace-cleanup-internal): New optional arg diff --git a/lispref/ChangeLog b/lispref/ChangeLog index d09689ce637..ea6aa4e41b8 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,10 @@ +2006-08-20 Richard Stallman + + * os.texi (Idle Timers): New node, split out from Timers. + Document current-idle-time. + * commands.texi (Reading One Event): Update xref. + * elisp.texi (Top): Update subnode menu. + 2006-08-16 Richard Stallman * keymaps.texi (Extended Menu Items): Show format of cached diff --git a/src/ChangeLog b/src/ChangeLog index 68a2bb082ec..a820b51f77d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2006-08-20 Richard Stallman + + * xfaces.c (load_pixmap): Add quotes in error message. + + * keyboard.c (Fcurrent_idle_time): New function. + (syms_of_keyboard): defsubr it. + 2006-08-18 Nick Roberts * window.c (Fset_window_fringes): Do nothing on a tty.