diff options
Diffstat (limited to 'src')
| -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 | ||