Mercurial > emacs
comparison src/process.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 | ba3ffbd9c422 |
| children | 9b6f45dd8386 |
comparison
equal
deleted
inserted
replaced
| 106184:0579465d2619 | 106185:f2cea199b0c4 |
|---|---|
| 475 | 475 |
| 476 string = make_unibyte_string (signame, strlen (signame)); | 476 string = make_unibyte_string (signame, strlen (signame)); |
| 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)); |
| 484 } | 484 } |
| 485 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); | 485 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
