# HG changeset patch # User Kim F. Storm # Date 1165235998 0 # Node ID 3f31a8cff008d03371c1071db0a9a64306122b72 # Parent 408e515f643dc34c5b388a1d1689df1c68890183 *** empty log message *** diff -r 408e515f643d -r 3f31a8cff008 lisp/ChangeLog --- a/lisp/ChangeLog Mon Dec 04 12:37:55 2006 +0000 +++ b/lisp/ChangeLog Mon Dec 04 12:39:58 2006 +0000 @@ -1,3 +1,8 @@ +2006-12-04 Kim F. Storm + + * bindings.el (global-map): Bind [signal t] to ignore, to have + user signals ignored by default. + 2006-12-04 Juanma Barranquero * descr-text.el (describe-char-unicode-data): Use a hidden buffer for diff -r 408e515f643d -r 3f31a8cff008 lispref/ChangeLog --- a/lispref/ChangeLog Mon Dec 04 12:37:55 2006 +0000 +++ b/lispref/ChangeLog Mon Dec 04 12:39:58 2006 +0000 @@ -1,3 +1,8 @@ +2006-12-04 Kim F. Storm + + * commands.texi (Misc Events): Update signal events. + (Event Examples): Add signal example. + 2006-11-29 Richard Stallman * frames.texi (Visibility of Frames): Explain visible windows diff -r 408e515f643d -r 3f31a8cff008 src/ChangeLog --- a/src/ChangeLog Mon Dec 04 12:37:55 2006 +0000 +++ b/src/ChangeLog Mon Dec 04 12:39:58 2006 +0000 @@ -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.