changeset 37433:94967574484c

(compute_char_face): If buffer is unibyte, set CH to zero instead of -1.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 23 Apr 2001 14:58:12 +0000
parents db1fc2ae7eac
children 05eab85e3eef
files src/xfaces.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfaces.c	Mon Apr 23 14:22:33 2001 +0000
+++ b/src/xfaces.c	Mon Apr 23 14:58:12 2001 +0000
@@ -6569,7 +6569,7 @@
   int face_id;
 
   if (NILP (current_buffer->enable_multibyte_characters))
-    ch = -1;
+    ch = 0;
 
   if (NILP (prop))
     {