aboutsummaryrefslogtreecommitdiffstats
path: root/src/abbrev.c
diff options
context:
space:
mode:
authorKarl Heuer1997-02-22 19:26:15 +0000
committerKarl Heuer1997-02-22 19:26:15 +0000
commitfc44dfab721d5da386e24b02e794da31754fd568 (patch)
tree50fa3d810eea5d5cabe1e9a1c38be38a390cbcd7 /src/abbrev.c
parentf8bce5df30129d20a63d7a6269ac8b02a8133f8d (diff)
downloademacs-fc44dfab721d5da386e24b02e794da31754fd568.tar.gz
emacs-fc44dfab721d5da386e24b02e794da31754fd568.zip
Change FETCH_CHAR references to FETCH_BYTE.
Diffstat (limited to 'src/abbrev.c')
-rw-r--r--src/abbrev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index 098d2863ef8..8c28e1c3ff0 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -243,7 +243,7 @@ Returns the abbrev symbol, if expansion took place.")
243 Vabbrev_start_location = Qnil; 243 Vabbrev_start_location = Qnil;
244 if (wordstart < BEGV || wordstart > ZV) 244 if (wordstart < BEGV || wordstart > ZV)
245 wordstart = 0; 245 wordstart = 0;
246 if (wordstart && wordstart != ZV && FETCH_CHAR (wordstart) == '-') 246 if (wordstart && wordstart != ZV && FETCH_BYTE (wordstart) == '-')
247 del_range (wordstart, wordstart + 1); 247 del_range (wordstart, wordstart + 1);
248 } 248 }
249 if (!wordstart) 249 if (!wordstart)
@@ -266,7 +266,7 @@ Returns the abbrev symbol, if expansion took place.")
266 266
267 for (idx = wordstart; idx < wordend; idx++) 267 for (idx = wordstart; idx < wordend; idx++)
268 { 268 {
269 register int c = FETCH_CHAR (idx); 269 register int c = FETCH_BYTE (idx);
270 if (UPPERCASEP (c)) 270 if (UPPERCASEP (c))
271 c = DOWNCASE (c), uccount++; 271 c = DOWNCASE (c), uccount++;
272 else if (! NOCASEP (c)) 272 else if (! NOCASEP (c))