diff options
| author | Andreas Schwab | 2009-11-21 11:52:23 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2009-11-21 11:52:23 +0000 |
| commit | 62a6e103dd7b9d940565639d6a47c8bdee3f24ce (patch) | |
| tree | 0e2ab8777e97932d73a91e328683bef10dbf7c8d /src/process.c | |
| parent | c3b616a940d9dab7f8fe4376755a8a8f9a2ba290 (diff) | |
| download | emacs-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/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index b604f97cffc..5c6875520e6 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -477,7 +477,7 @@ status_message (p) | |||
| 477 | if (! NILP (Vlocale_coding_system)) | 477 | if (! NILP (Vlocale_coding_system)) |
| 478 | string = (code_convert_string_norecord | 478 | string = (code_convert_string_norecord |
| 479 | (string, Vlocale_coding_system, 0)); | 479 | (string, Vlocale_coding_system, 0)); |
| 480 | c1 = STRING_CHAR ((char *) SDATA (string), 0); | 480 | c1 = STRING_CHAR ((char *) SDATA (string)); |
| 481 | c2 = DOWNCASE (c1); | 481 | c2 = DOWNCASE (c1); |
| 482 | if (c1 != c2) | 482 | if (c1 != c2) |
| 483 | Faset (string, make_number (0), make_number (c2)); | 483 | Faset (string, make_number (0), make_number (c2)); |