Mercurial > emacs
changeset 7197:9a593efc103d
(decode_mode_spec): Fix handling of `%t'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 29 Apr 1994 19:38:03 +0000 |
parents | 6d1d2e86fb37 |
children | d89164dd90fc |
files | src/xdisp.c |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Fri Apr 29 19:35:46 1994 +0000 +++ b/src/xdisp.c Fri Apr 29 19:38:03 1994 +0000 @@ -2947,10 +2947,7 @@ case 't': /* indicate TEXT or BINARY */ #ifdef MSDOS - decode_mode_spec_buf[0] - = NILP (current_buffer->buffer_file_type) ? "T" : "B"; - decode_mode_spec_buf[1] = 0; - return decode_mode_spec_buf; + return NILP (current_buffer->buffer_file_type) ? "T" : "B"; #else /* not MSDOS */ return "T"; #endif /* not MSDOS */