diff options
| author | Karl Heuer | 1999-06-17 22:57:01 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-06-17 22:57:01 +0000 |
| commit | 6693a99a2c8b3d61f0735ba093d3354276ca4f9d (patch) | |
| tree | 13bb8072810a63cb74aafeda41fe2eeef413e530 /src | |
| parent | 9660863d1ef35c5127f2c8fef84352315c5abfda (diff) | |
| download | emacs-6693a99a2c8b3d61f0735ba093d3354276ca4f9d.tar.gz emacs-6693a99a2c8b3d61f0735ba093d3354276ca4f9d.zip | |
(invalid_eol_type): Make it unsigned.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index b401f59de27..55a3ecdb8c1 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -4566,7 +4566,7 @@ pint2str (buf, width, d) | |||
| 4566 | If EOL_FLAG is 1, set also a mnemonic character for end-of-line | 4566 | If EOL_FLAG is 1, set also a mnemonic character for end-of-line |
| 4567 | type of CODING_SYSTEM. Return updated pointer into BUF. */ | 4567 | type of CODING_SYSTEM. Return updated pointer into BUF. */ |
| 4568 | 4568 | ||
| 4569 | static char invalid_eol_type[] = "(*invalid*)"; | 4569 | static unsigned char invalid_eol_type[] = "(*invalid*)"; |
| 4570 | 4570 | ||
| 4571 | static char * | 4571 | static char * |
| 4572 | decode_mode_spec_coding (coding_system, buf, eol_flag) | 4572 | decode_mode_spec_coding (coding_system, buf, eol_flag) |