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
522d42f7
Commit
522d42f7
authored
Apr 23, 2001
by
Gerd Moellmann
Browse files
(compute_char_face): If buffer is unibyte, set CH to
zero instead of -1.
parent
53e1a74c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/xfaces.c
src/xfaces.c
+1
-1
No files found.
src/ChangeLog
View file @
522d42f7
2001-04-23 Gerd Moellmann <gerd@gnu.org>
* xfaces.c (compute_char_face): If buffer is unibyte, set CH to
zero instead of -1.
2001-04-21 Eli Zaretskii <eliz@is.elta.co.il>
* process.c (wait_reading_process_input) [!subprocesses]: Don't
...
...
src/xfaces.c
View file @
522d42f7
...
...
@@ -6569,7 +6569,7 @@ compute_char_face (f, ch, prop)
int face_id;
if (NILP (current_buffer->enable_multibyte_characters))
ch =
-1
;
ch =
0
;
if (NILP (prop))
{
...
...
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