# HG changeset patch # User Richard M. Stallman # Date 1087166381 0 # Node ID 54229932d09a1ca1aa51623a71c5e9dc9cb784e5 # Parent 53ee2494768312c274f3cf01f29c936d6b7b2e4a *** empty log message *** diff -r 53ee24947683 -r 54229932d09a etc/NEWS --- a/etc/NEWS Sun Jun 13 22:39:20 2004 +0000 +++ b/etc/NEWS Sun Jun 13 22:39:41 2004 +0000 @@ -2145,6 +2145,15 @@ * Lisp Changes in Emacs 21.4 ++++ +** Cleaner way to enter key sequences. + +You can enter a constant key sequence in a more natural format, the +same one used for saving keyboard macros, using the macro `kbd'. For +example, + +(kbd "C-x C-f") => "\^x\^f" + ** The sentinel is now called when a network process is deleted with delete-process. The status message passed to the sentinel for a deleted network process is "deleted". The message passed to the @@ -2155,10 +2164,12 @@ undo-outer-limit, garbage collection empties it. This is to prevent it from using up the available memory and choking Emacs. +--- ** New function quail-find-key returns a list of keys to type in the current input method to input a character. -** New functions posn-at-point and posn-at-x-y returns ++++ +** New functions posn-at-point and posn-at-x-y return click-event-style position information for a given visible buffer position or for a given window pixel coordinate. diff -r 53ee24947683 -r 54229932d09a lisp/ChangeLog --- a/lisp/ChangeLog Sun Jun 13 22:39:20 2004 +0000 +++ b/lisp/ChangeLog Sun Jun 13 22:39:41 2004 +0000 @@ -1,3 +1,20 @@ +2004-06-13 Richard M. Stallman + + * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace. + + * emulation/pc-select.el: Doc fixes: say "PC Selection mode", + not "`pc-selection-mode'". + + * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages. + + * simple.el (previous-matching-history-element): Specify a default. + + * hexl.el (hexl-mode): Catch errors in hexl-goto-address. + + * cus-face.el (custom-declare-face): Simplify code. + + * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes. + 2004-06-13 Luc Teirlinck * files.el (before-save-hook): Add `time-stamp' to the options. diff -r 53ee24947683 -r 54229932d09a man/ChangeLog --- a/man/ChangeLog Sun Jun 13 22:39:20 2004 +0000 +++ b/man/ChangeLog Sun Jun 13 22:39:41 2004 +0000 @@ -1,3 +1,9 @@ +2004-06-13 Richard M. Stallman + + * custom.texi (Init Syntax): Explain about vars that do special + things when set with setq or with Custom. + (Init Examples): Add line-number-mode example. + 2004-06-13 Lars Hansen * dired-x.texi (dired-mark-omitted): Update keybinding. diff -r 53ee24947683 -r 54229932d09a src/ChangeLog --- a/src/ChangeLog Sun Jun 13 22:39:20 2004 +0000 +++ b/src/ChangeLog Sun Jun 13 22:39:41 2004 +0000 @@ -1,3 +1,31 @@ +2004-06-13 Richard M. Stallman + + * regex.h (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t) + (re_wctype, re_iswctype, re_wctype_to_bit): + Non-function definitions moved here from regex.c. + + * regex.c (re_wctype, re_iswctype): Function defs longer static. + (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t) + (re_wctype, re_iswctype, re_wctype_to_bit): + Non-function definitions moved to regex.h. + + * window.c (Fselect_window): Doc fix. + + * syntax.c: Include regex.h. + (skip_chars): New arg HANDLE_ISO_CLASSES. Callers changed. + If requested, make a list of classes, then check the scanned + chars for membership in them. + (in_classes): New function. + Doc fix. + + * keyboard.c (cmd_error): Don't call any_kboard_state + if inside a recursive edit level. + +2004-06-13 Lorentey K,Aa(Broly + + * keyboard.c (command_loop): Call any_kboard_state before + command_loop_2 when at top level. + 2004-06-13 Andreas Schwab * print.c (print_object): Always use %ld for printing EMACS_INT.