]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Sun, 13 Jun 2004 22:39:41 +0000 (22:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 13 Jun 2004 22:39:41 +0000 (22:39 +0000)
etc/NEWS
lisp/ChangeLog
man/ChangeLog
src/ChangeLog

index 211579370a2b7e7c1fc57174c345f3576e1a489d..ca4b17ad8248e119c66e6a8dd26a1adc33f03d30 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2145,6 +2145,15 @@ configuration files.
 \f
 * 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 @@ changed to "connection broken by remote peer".
 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.
 
index 52f0cfe459582f1ed3762c49c432e922c31e3de3..7971f1bdfc75157c02abbbd8bef895055286faa3 100644 (file)
@@ -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.
index 9a2d1b31323dddea2412725cd0669b939ba55ee6..8969df73efbf73c8a7a9d59c2cf8d1aff630a13a 100644 (file)
@@ -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.
index 37719505adf2a5f5550727cbb7d0905f44776485..5104ca9545c961b6d76bcdfa5c6aad6929c9b5aa 100644 (file)
@@ -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\e,Aa\e(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.