aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2006-12-04 12:39:58 +0000
committerKim F. Storm <[email protected]>2006-12-04 12:39:58 +0000
commit9d8b24a2008a453e8a6d45bca17196f0cb4bea2e (patch)
tree068c30d0531d71b9beba09abdc8500d8a76226a5
parent5945f1f455595da09fe7db795d0efaa97f9b63c2 (diff)
*** empty log message ***
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lispref/ChangeLog5
-rw-r--r--src/ChangeLog9
3 files changed, 15 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0e9c2c352b..b3e4906279 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-04 Kim F. Storm <[email protected]>
+
+ * bindings.el (global-map): Bind [signal t] to ignore, to have
+ user signals ignored by default.
+
2006-12-04 Juanma Barranquero <[email protected]>
* descr-text.el (describe-char-unicode-data): Use a hidden buffer for
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 312932c591..88aeae85b2 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-04 Kim F. Storm <[email protected]>
+
+ * commands.texi (Misc Events): Update signal events.
+ (Event Examples): Add signal example.
+
2006-11-29 Richard Stallman <[email protected]>
* frames.texi (Visibility of Frames): Explain visible windows
diff --git a/src/ChangeLog b/src/ChangeLog
index 0fa931f490..47aa3d6054 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -9,12 +9,13 @@
if first event in [signal xxx] sequence.
(lispy_user_signals, Qusr1_signal, Qusr2_signal): Remove.
(syms_of_keyboard): Don't intern and staticpro them.
- (Qsignal, Qusr1, Qusr2): Declare.
- (syms_of_keyboard): Intern and staticpro them.
- (make_lispy_event): Return them for USER_SIGNAL_EVENTs.
+ (Qsignal): Declare here.
+ (syms_of_keyboard): Intern and staticpro it.
+ (make_lispy_event): Use it. Intern symbols on the fly for other
+ USER_SIGNAL_EVENTs events.
* process.c (Qsignal): Declare extern.
- (syms_of_process): Don't intern/staticpro them here.
+ (syms_of_process): Don't intern/staticpro it here.
* process.c (read_process_output): Abort if carryover < 0.