Mercurial > emacs
diff src/insdel.c @ 106185:f2cea199b0c4
* character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Remove
ignored second argument. All callers changed.
* regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
(RE_STRING_CHAR_AND_LENGTH): Likewise.
* xdisp.c (string_char_and_length): Likewise.
| author | Andreas Schwab <schwab@linux-m68k.org> |
|---|---|
| date | Sat, 21 Nov 2009 11:52:23 +0000 |
| parents | 48d6337584da |
| children | 35b575add861 |
line wrap: on
line diff
--- a/src/insdel.c Sat Nov 21 10:32:20 2009 +0000 +++ b/src/insdel.c Sat Nov 21 11:52:23 2009 +0000 @@ -648,7 +648,7 @@ while (bytes_left > 0) { int thislen, c; - c = STRING_CHAR_AND_LENGTH (from_addr, bytes_left, thislen); + c = STRING_CHAR_AND_LENGTH (from_addr, thislen); if (! ASCII_CHAR_P (c)) c &= 0xFF; *to_addr++ = c;
