summaryrefslogtreecommitdiff
path: root/src/abbrev.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1997-02-22 19:26:15 +0000
committerKarl Heuer <kwzh@gnu.org>1997-02-22 19:26:15 +0000
commitfc44dfab721d5da386e24b02e794da31754fd568 (patch)
tree50fa3d810eea5d5cabe1e9a1c38be38a390cbcd7 /src/abbrev.c
parentf8bce5df30129d20a63d7a6269ac8b02a8133f8d (diff)
downloademacs-fc44dfab721d5da386e24b02e794da31754fd568.tar.gz
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.")
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 @@ Returns the abbrev symbol, if expansion took place.")
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))