Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
adf6a429
Commit
adf6a429
authored
Feb 12, 2008
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(read_avail_input): Call Fdelete_terminal.
parent
174105f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
src/ChangeLog
src/ChangeLog
+1
-0
src/keyboard.c
src/keyboard.c
+5
-4
No files found.
src/ChangeLog
View file @
adf6a429
2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
* keyboard.c (read_avail_input):
* frame.c (Fdelete_frame): Call Fdelete_terminal.
2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
...
...
src/keyboard.c
View file @
adf6a429
...
...
@@ -7134,10 +7134,11 @@ read_avail_input (expected)
kill (getpid (), SIGHUP);
/* XXX Is calling delete_terminal safe here? It calls Fdelete_frame. */
if (t->delete_terminal_hook)
(*t->delete_terminal_hook) (t);
else
delete_terminal (t);
{
Lisp_Object tmp;
XSETTERMINAL (tmp, t);
Fdelete_terminal (tmp, Qnoelisp);
}
}
if (hold_quit.kind != NO_EVENT)
...
...
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