diff options
| author | Romain Francoise | 2007-08-29 16:03:26 +0000 |
|---|---|---|
| committer | Romain Francoise | 2007-08-29 16:03:26 +0000 |
| commit | 0a42be6da7d36b5983c086e4c2108596273656e1 (patch) | |
| tree | 136e5b1fc3145ad182b6c72aa1f854bc384601ca | |
| parent | 7196c97057ede717b8fd8b4d6ba6c223bbadd54a (diff) | |
| download | emacs-0a42be6da7d36b5983c086e4c2108596273656e1.tar.gz emacs-0a42be6da7d36b5983c086e4c2108596273656e1.zip | |
(Fset_input_mode): Don't call `Fset_quit_char' if QUIT hasn't been
provided.
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/keyboard.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index eb3c1feaa71..78d4bb3211e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-08-29 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if | ||
| 4 | QUIT hasn't been provided. | ||
| 5 | |||
| 1 | 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * callproc.c (child_setup, getenv_internal): Use the | 8 | * callproc.c (child_setup, getenv_internal): Use the |
diff --git a/src/keyboard.c b/src/keyboard.c index 95a4aecfe39..635db1eb597 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -11319,7 +11319,8 @@ See also `current-input-mode'. */) | |||
| 11319 | Fset_input_interrupt_mode (interrupt); | 11319 | Fset_input_interrupt_mode (interrupt); |
| 11320 | Fset_output_flow_control (flow, Qnil); | 11320 | Fset_output_flow_control (flow, Qnil); |
| 11321 | Fset_input_meta_mode (meta, Qnil); | 11321 | Fset_input_meta_mode (meta, Qnil); |
| 11322 | Fset_quit_char (quit); | 11322 | if (!NILP (quit)) |
| 11323 | Fset_quit_char (quit); | ||
| 11323 | return Qnil; | 11324 | return Qnil; |
| 11324 | } | 11325 | } |
| 11325 | 11326 | ||