# HG changeset patch # User Kim F. Storm # Date 1161556363 0 # Node ID e3fbddada23eaba4a13be6bbe89b44564f34878c # Parent 346f9b4afa15717269531baf74ab6e2e524f2654 *** empty log message *** diff -r 346f9b4afa15 -r e3fbddada23e lisp/ChangeLog --- a/lisp/ChangeLog Sun Oct 22 22:25:03 2006 +0000 +++ b/lisp/ChangeLog Sun Oct 22 22:32:43 2006 +0000 @@ -1,3 +1,10 @@ +2006-10-23 Kim F. Storm + + * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'. + (sit-for): If last command was a prefix arg, add the read-ahead + event to unread-command-events as (t . EVENT) so it will be added + to this-command-keys by read-key-sequence. + 2006-10-22 martin rudalics * textmodes/flyspell.el (flyspell-word): Skip past all previous diff -r 346f9b4afa15 -r e3fbddada23e src/ChangeLog --- a/src/ChangeLog Sun Oct 22 22:25:03 2006 +0000 +++ b/src/ChangeLog Sun Oct 22 22:32:43 2006 +0000 @@ -1,3 +1,9 @@ +2006-10-23 Kim F. Storm + + * keyboard.c (read_char): Make an element (t . EVENT) in + unread-command-events add EVENT to the current command's key sequence. + (syms_of_keyboard) : Update doc. + 2006-10-21 Richard Stallman * minibuf.c (Vread_expression_map): Define here.