aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorAndreas Schwab2009-11-21 11:52:23 +0000
committerAndreas Schwab2009-11-21 11:52:23 +0000
commit62a6e103dd7b9d940565639d6a47c8bdee3f24ce (patch)
tree0e2ab8777e97932d73a91e328683bef10dbf7c8d /src/buffer.c
parentc3b616a940d9dab7f8fe4376755a8a8f9a2ba290 (diff)
downloademacs-62a6e103dd7b9d940565639d6a47c8bdee3f24ce.tar.gz
emacs-62a6e103dd7b9d940565639d6a47c8bdee3f24ce.zip
* 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.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 8edea2d8728..8657fd8cdff 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2409,7 +2409,7 @@ current buffer is cleared. */)
2409 p++, pos++; 2409 p++, pos++;
2410 else if (CHAR_BYTE8_HEAD_P (*p)) 2410 else if (CHAR_BYTE8_HEAD_P (*p))
2411 { 2411 {
2412 c = STRING_CHAR_AND_LENGTH (p, stop - pos, bytes); 2412 c = STRING_CHAR_AND_LENGTH (p, bytes);
2413 /* Delete all bytes for this 8-bit character but the 2413 /* Delete all bytes for this 8-bit character but the
2414 last one, and change the last one to the charcter 2414 last one, and change the last one to the charcter
2415 code. */ 2415 code. */