aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-06-13 22:39:41 +0000
committerRichard M. Stallman2004-06-13 22:39:41 +0000
commit092de21d0b192c737e6f3ca52563bf5ac03c885f (patch)
tree1ef46eaea1d0bd46fcaa9b80b0f103d4e592a34b
parente3ee34f0c34597d1b854be18c1598a98c9fba9fa (diff)
downloademacs-092de21d0b192c737e6f3ca52563bf5ac03c885f.tar.gz
emacs-092de21d0b192c737e6f3ca52563bf5ac03c885f.zip
*** empty log message ***
-rw-r--r--etc/NEWS13
-rw-r--r--lisp/ChangeLog17
-rw-r--r--man/ChangeLog6
-rw-r--r--src/ChangeLog28
4 files changed, 63 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 211579370a2..ca4b17ad824 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2145,6 +2145,15 @@ configuration files.
2145 2145
2146* Lisp Changes in Emacs 21.4 2146* Lisp Changes in Emacs 21.4
2147 2147
2148+++
2149** Cleaner way to enter key sequences.
2150
2151You can enter a constant key sequence in a more natural format, the
2152same one used for saving keyboard macros, using the macro `kbd'. For
2153example,
2154
2155(kbd "C-x C-f") => "\^x\^f"
2156
2148** The sentinel is now called when a network process is deleted with 2157** The sentinel is now called when a network process is deleted with
2149delete-process. The status message passed to the sentinel for a 2158delete-process. The status message passed to the sentinel for a
2150deleted network process is "deleted". The message passed to the 2159deleted network process is "deleted". The message passed to the
@@ -2155,10 +2164,12 @@ changed to "connection broken by remote peer".
2155undo-outer-limit, garbage collection empties it. This is to prevent 2164undo-outer-limit, garbage collection empties it. This is to prevent
2156it from using up the available memory and choking Emacs. 2165it from using up the available memory and choking Emacs.
2157 2166
2167---
2158** New function quail-find-key returns a list of keys to type in the 2168** New function quail-find-key returns a list of keys to type in the
2159current input method to input a character. 2169current input method to input a character.
2160 2170
2161** New functions posn-at-point and posn-at-x-y returns 2171+++
2172** New functions posn-at-point and posn-at-x-y return
2162click-event-style position information for a given visible buffer 2173click-event-style position information for a given visible buffer
2163position or for a given window pixel coordinate. 2174position or for a given window pixel coordinate.
2164 2175
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 52f0cfe4595..7971f1bdfc7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12004-06-13 Richard M. Stallman <rms@gnu.org>
2
3 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
4
5 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
6 not "`pc-selection-mode'".
7
8 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
9
10 * simple.el (previous-matching-history-element): Specify a default.
11
12 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
13
14 * cus-face.el (custom-declare-face): Simplify code.
15
16 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
17
12004-06-13 Luc Teirlinck <teirllm@auburn.edu> 182004-06-13 Luc Teirlinck <teirllm@auburn.edu>
2 19
3 * files.el (before-save-hook): Add `time-stamp' to the options. 20 * files.el (before-save-hook): Add `time-stamp' to the options.
diff --git a/man/ChangeLog b/man/ChangeLog
index 9a2d1b31323..8969df73efb 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,9 @@
12004-06-13 Richard M. Stallman <rms@gnu.org>
2
3 * custom.texi (Init Syntax): Explain about vars that do special
4 things when set with setq or with Custom.
5 (Init Examples): Add line-number-mode example.
6
12004-06-13 Lars Hansen <larsh@math.ku.dk> 72004-06-13 Lars Hansen <larsh@math.ku.dk>
2 8
3 * dired-x.texi (dired-mark-omitted): Update keybinding. 9 * dired-x.texi (dired-mark-omitted): Update keybinding.
diff --git a/src/ChangeLog b/src/ChangeLog
index 37719505adf..5104ca9545c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,31 @@
12004-06-13 Richard M. Stallman <rms@gnu.org>
2
3 * regex.h (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
4 (re_wctype, re_iswctype, re_wctype_to_bit):
5 Non-function definitions moved here from regex.c.
6
7 * regex.c (re_wctype, re_iswctype): Function defs longer static.
8 (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
9 (re_wctype, re_iswctype, re_wctype_to_bit):
10 Non-function definitions moved to regex.h.
11
12 * window.c (Fselect_window): Doc fix.
13
14 * syntax.c: Include regex.h.
15 (skip_chars): New arg HANDLE_ISO_CLASSES. Callers changed.
16 If requested, make a list of classes, then check the scanned
17 chars for membership in them.
18 (in_classes): New function.
19 Doc fix.
20
21 * keyboard.c (cmd_error): Don't call any_kboard_state
22 if inside a recursive edit level.
23
242004-06-13 Lorentey K,Aa(Broly <lorentey@elte.hu>
25
26 * keyboard.c (command_loop): Call any_kboard_state before
27 command_loop_2 when at top level.
28
12004-06-13 Andreas Schwab <schwab@suse.de> 292004-06-13 Andreas Schwab <schwab@suse.de>
2 30
3 * print.c (print_object): Always use %ld for printing EMACS_INT. 31 * print.c (print_object): Always use %ld for printing EMACS_INT.