Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0a42be6d
Commit
0a42be6d
authored
Aug 29, 2007
by
Romain Francoise
Browse files
(Fset_input_mode): Don't call `Fset_quit_char' if QUIT hasn't been
provided.
parent
7196c970
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/keyboard.c
src/keyboard.c
+2
-1
No files found.
src/ChangeLog
View file @
0a42be6d
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
src/keyboard.c
View file @
0a42be6d
...
...
@@ -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;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment