# HG changeset patch # User Kim F. Storm # Date 1098795560 0 # Node ID 012a0b5cf5916e8f3adb279fc517e05da4e6d718 # Parent e092a2ece99bfeeb5ff66ff8e1f51e2a61f88e30 *** empty log message *** diff -r e092a2ece99b -r 012a0b5cf591 etc/NEWS --- a/etc/NEWS Tue Oct 26 12:56:47 2004 +0000 +++ b/etc/NEWS Tue Oct 26 12:59:20 2004 +0000 @@ -2289,6 +2289,11 @@ * Lisp Changes in Emacs 21.4 ++++ +** An interactive specification may now use the code letter 'U' to get +the up-event that was discarded in case the last key sequence read for a +previous 'k' or 'K' argument was a down-event; otherwise nil is used. + ** Function `translate-region' accepts also a char-table as TABLE argument. diff -r e092a2ece99b -r 012a0b5cf591 lisp/ChangeLog --- a/lisp/ChangeLog Tue Oct 26 12:56:47 2004 +0000 +++ b/lisp/ChangeLog Tue Oct 26 12:59:20 2004 +0000 @@ -1,3 +1,8 @@ +2004-10-26 Kim F. Storm + + * help.el (describe-key): Describe both down-event and up-event + for a mouse click. + 2004-10-26 Richard M. Stallman * woman.el (woman): Don't call interactive-p. @@ -15,11 +20,11 @@ * progmodes/flymake.el (flymake-split-string): Use `flymake-split-string-remove-empty-edges' in any case. - + 2004-10-26 Masatake YAMATO - * progmodes/flymake.el (flymake-err-line-patterns): - Use `compilation-error-regexp-alist-alist' instead of + * progmodes/flymake.el (flymake-err-line-patterns): + Use `compilation-error-regexp-alist-alist' instead of `compilation-error-regexp-alist'. 2004-10-25 Jay Belanger diff -r e092a2ece99b -r 012a0b5cf591 lispref/ChangeLog --- a/lispref/ChangeLog Tue Oct 26 12:56:47 2004 +0000 +++ b/lispref/ChangeLog Tue Oct 26 12:59:20 2004 +0000 @@ -1,3 +1,7 @@ +2004-10-26 Kim F. Storm + + * commands.texi (Interactive Codes): Add U code letter. + 2004-10-25 Simon Josefsson * minibuf.texi (Reading a Password): Add. diff -r e092a2ece99b -r 012a0b5cf591 src/ChangeLog --- a/src/ChangeLog Tue Oct 26 12:56:47 2004 +0000 +++ b/src/ChangeLog Tue Oct 26 12:59:20 2004 +0000 @@ -1,3 +1,8 @@ +2004-10-26 Kim F. Storm + + * callint.c (Fcall_interactively): Add 'U' code to get the + up-event discarded by a previous 'k' or 'K' argument. + 2004-10-26 David Kastrup * buffer.c (syms_of_buffer): Fix a few typos.