diff options
| author | Kim F. Storm | 2006-12-04 12:39:58 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-12-04 12:39:58 +0000 |
| commit | 9d8b24a2008a453e8a6d45bca17196f0cb4bea2e (patch) | |
| tree | 068c30d0531d71b9beba09abdc8500d8a76226a5 | |
| parent | 5945f1f455595da09fe7db795d0efaa97f9b63c2 (diff) | |
| download | emacs-9d8b24a2008a453e8a6d45bca17196f0cb4bea2e.tar.gz emacs-9d8b24a2008a453e8a6d45bca17196f0cb4bea2e.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 9 |
3 files changed, 15 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0e9c2c352b2..b3e49062794 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-12-04 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * bindings.el (global-map): Bind [signal t] to ignore, to have | ||
| 4 | user signals ignored by default. | ||
| 5 | |||
| 1 | 2006-12-04 Juanma Barranquero <lekktu@gmail.com> | 6 | 2006-12-04 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * descr-text.el (describe-char-unicode-data): Use a hidden buffer for | 8 | * descr-text.el (describe-char-unicode-data): Use a hidden buffer for |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 312932c591a..88aeae85b25 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-12-04 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * commands.texi (Misc Events): Update signal events. | ||
| 4 | (Event Examples): Add signal example. | ||
| 5 | |||
| 1 | 2006-11-29 Richard Stallman <rms@gnu.org> | 6 | 2006-11-29 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * frames.texi (Visibility of Frames): Explain visible windows | 8 | * frames.texi (Visibility of Frames): Explain visible windows |
diff --git a/src/ChangeLog b/src/ChangeLog index 0fa931f4903..47aa3d6054b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -9,12 +9,13 @@ | |||
| 9 | if first event in [signal xxx] sequence. | 9 | if first event in [signal xxx] sequence. |
| 10 | (lispy_user_signals, Qusr1_signal, Qusr2_signal): Remove. | 10 | (lispy_user_signals, Qusr1_signal, Qusr2_signal): Remove. |
| 11 | (syms_of_keyboard): Don't intern and staticpro them. | 11 | (syms_of_keyboard): Don't intern and staticpro them. |
| 12 | (Qsignal, Qusr1, Qusr2): Declare. | 12 | (Qsignal): Declare here. |
| 13 | (syms_of_keyboard): Intern and staticpro them. | 13 | (syms_of_keyboard): Intern and staticpro it. |
| 14 | (make_lispy_event): Return them for USER_SIGNAL_EVENTs. | 14 | (make_lispy_event): Use it. Intern symbols on the fly for other |
| 15 | USER_SIGNAL_EVENTs events. | ||
| 15 | 16 | ||
| 16 | * process.c (Qsignal): Declare extern. | 17 | * process.c (Qsignal): Declare extern. |
| 17 | (syms_of_process): Don't intern/staticpro them here. | 18 | (syms_of_process): Don't intern/staticpro it here. |
| 18 | 19 | ||
| 19 | * process.c (read_process_output): Abort if carryover < 0. | 20 | * process.c (read_process_output): Abort if carryover < 0. |
| 20 | 21 | ||