Mercurial > emacs
changeset 56094:54229932d09a
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 13 Jun 2004 22:39:41 +0000 |
parents | 53ee24947683 |
children | 4ec2da03a87c |
files | etc/NEWS lisp/ChangeLog man/ChangeLog src/ChangeLog |
diffstat | 4 files changed, 63 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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.
--- 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 <rms@gnu.org> + + * 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 <teirllm@auburn.edu> * files.el (before-save-hook): Add `time-stamp' to the options.
--- 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 <rms@gnu.org> + + * 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 <larsh@math.ku.dk> * dired-x.texi (dired-mark-omitted): Update keybinding.
--- 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 <rms@gnu.org> + + * 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 <lorentey@elte.hu> + + * keyboard.c (command_loop): Call any_kboard_state before + command_loop_2 when at top level. + 2004-06-13 Andreas Schwab <schwab@suse.de> * print.c (print_object): Always use %ld for printing EMACS_INT.