]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_input_mode): Don't call `Fset_quit_char' if QUIT hasn't been
authorRomain Francoise <romain@orebokech.com>
Wed, 29 Aug 2007 16:03:26 +0000 (16:03 +0000)
committerRomain Francoise <romain@orebokech.com>
Wed, 29 Aug 2007 16:03:26 +0000 (16:03 +0000)
provided.

src/ChangeLog
src/keyboard.c

index eb3c1feaa715df0da5bdc2399aa99621e7796859..78d4bb3211e514329284c64ec8170e1f817ea869 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-29  Romain Francoise  <romain@orebokech.com>
+
+       * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
+       QUIT hasn't been provided.
+
 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * callproc.c (child_setup, getenv_internal): Use the
index 95a4aecfe395916392af650a62a4d3e81a92917e..635db1eb597b16add06d7e2e88731c60beea0d5a 100644 (file)
@@ -11319,7 +11319,8 @@ See also `current-input-mode'.  */)
   Fset_input_interrupt_mode (interrupt);
   Fset_output_flow_control (flow, Qnil);
   Fset_input_meta_mode (meta, Qnil);
-  Fset_quit_char (quit);
+  if (!NILP (quit))
+    Fset_quit_char (quit);
   return Qnil;
 }