# HG changeset patch # User Karl Heuer # Date 856639575 0 # Node ID 5246c075a6438ffa7344e0297163a3563f47ed01 # Parent 8d2ff69b0c0a1a37f8e42dbf75213a144028598c Change FETCH_CHAR references to FETCH_BYTE. diff -r 8d2ff69b0c0a -r 5246c075a643 src/abbrev.c --- 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)) diff -r 8d2ff69b0c0a -r 5246c075a643 src/casefiddle.c --- a/src/casefiddle.c Sat Feb 22 19:23:31 1997 +0000 +++ b/src/casefiddle.c Sat Feb 22 19:26:15 1997 +0000 @@ -149,13 +149,13 @@ for (i = start; i < end; i++) { - c = FETCH_CHAR (i); + c = FETCH_BYTE (i); if (inword && flag != CASE_CAPITALIZE_UP) c = DOWNCASE (c); else if (!UPPERCASEP (c) && (!inword || flag != CASE_CAPITALIZE_UP)) c = UPCASE1 (c); - FETCH_CHAR (i) = c; + FETCH_BYTE (i) = c; if ((int) flag >= (int) CASE_CAPITALIZE) inword = SYNTAX (c) == Sword; }