# HG changeset patch # User Richard M. Stallman # Date 1156076373 0 # Node ID bcc1f5792592f087cc4fe6b7f7f67fc7331cc20e # Parent 66b140055b7d99895b2fec2a44182bf5f61d71f2 *** empty log message *** diff -r 66b140055b7d -r bcc1f5792592 etc/NEWS --- a/etc/NEWS Sun Aug 20 12:16:58 2006 +0000 +++ b/etc/NEWS Sun Aug 20 12:19:33 2006 +0000 @@ -4665,6 +4665,7 @@ *** 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 @@ *** `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 -r 66b140055b7d -r bcc1f5792592 lisp/ChangeLog --- a/lisp/ChangeLog Sun Aug 20 12:16:58 2006 +0000 +++ b/lisp/ChangeLog Sun Aug 20 12:19:33 2006 +0000 @@ -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 -r 66b140055b7d -r bcc1f5792592 lispref/ChangeLog --- a/lispref/ChangeLog Sun Aug 20 12:16:58 2006 +0000 +++ b/lispref/ChangeLog Sun Aug 20 12:19:33 2006 +0000 @@ -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 -r 66b140055b7d -r bcc1f5792592 src/ChangeLog --- a/src/ChangeLog Sun Aug 20 12:16:58 2006 +0000 +++ b/src/ChangeLog Sun Aug 20 12:19:33 2006 +0000 @@ -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.