diff src/abbrev.c @ 17059:5246c075a643

Change FETCH_CHAR references to FETCH_BYTE.
author Karl Heuer <kwzh@gnu.org>
date Sat, 22 Feb 1997 19:26:15 +0000
parents 126a42ee62ac
children 4b3fc2cda7fc
line wrap: on
line diff
--- a/src/abbrev.c	Sat Feb 22 19:23:31 1997 +0000
+++ b/src/abbrev.c	Sat Feb 22 19:26:15 1997 +0000
@@ -243,7 +243,7 @@
       Vabbrev_start_location = Qnil;
       if (wordstart < BEGV || wordstart > ZV)
 	wordstart = 0;
-      if (wordstart && wordstart != ZV && FETCH_CHAR (wordstart) == '-')
+      if (wordstart && wordstart != ZV && FETCH_BYTE (wordstart) == '-')
 	del_range (wordstart, wordstart + 1);
     }
   if (!wordstart)
@@ -266,7 +266,7 @@
 
   for (idx = wordstart; idx < wordend; idx++)
     {
-      register int c = FETCH_CHAR (idx);
+      register int c = FETCH_BYTE (idx);
       if (UPPERCASEP (c))
 	c = DOWNCASE (c), uccount++;
       else if (! NOCASEP (c))