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
8e91f441
Commit
8e91f441
authored
Jun 07, 1994
by
Richard M. Stallman
Browse files
(command_loop_1): Treat nil in display tab like no display tab.
parent
54626b60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/keyboard.c
src/keyboard.c
+6
-1
No files found.
src/keyboard.c
View file @
8e91f441
...
...
@@ -1165,7 +1165,12 @@ command_loop_1 ()
obj = DISP_CHAR_VECTOR (dp, lose);
if (NILP (obj))
no_redisplay = direct_output_for_insert (lose);
{
/* Do it only for char codes
that by default display as themselves. */
if (lose >= 0x20 && lose <= 0x7e)
no_redisplay = direct_output_for_insert (lose);
}
else if (XTYPE (obj) == Lisp_Vector
&& XVECTOR (obj)->size == 1
&& (XTYPE (obj = XVECTOR (obj)->contents[0])
...
...
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