diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-02-16 20:39:46 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-02-16 20:39:46 +0200 |
commit | 05c652517317d10690aaf0a6aa0bc876382b9d82 (patch) | |
tree | 14bdd1f74a7148e9a95b034b14fcacf5064eb4f9 /src/buffer.h | |
parent | 689743a20ba5883750ab24192ec955941f2b9752 (diff) | |
download | emacs-05c652517317d10690aaf0a6aa0bc876382b9d82.tar.gz |
Use KVAR in MS-Windows build, remove buffer-file-type.
w32fns.c (Fx_create_frame): Use KVAR.
w32term.c (w32_create_terminal): Use KVAR.
s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove.
xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT.
fileio.c (Finsert_file_contents, Fwrite_region): Remove
references to buffer_file_type.
(syms_of_fileio): Don't intern and staticpro
find-buffer-file-type.
callproc.c (syms_of_callproc): Remove references to
buffer_file_type.
buffer.c (reset_buffer_local_variables): Don't set
buffer_file_type.
(init_buffer_once): Likewise.
(syms_of_buffer): Don't define buffer-file-type.
buffer.h (struct buffer): Remove buffer_file_type.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/buffer.h b/src/buffer.h index 19a7c0b4632..65c7168d60a 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -662,12 +662,6 @@ struct buffer Lisp_Object BUFFER_INTERNAL_FIELD (left_margin); /* Function to call when insert space past fill column. */ Lisp_Object BUFFER_INTERNAL_FIELD (auto_fill_function); - /* nil: text, t: binary. - This value is meaningful only on certain operating systems. */ - /* Actually, we don't need this flag any more because end-of-line - is handled correctly according to the buffer-file-coding-system - of the buffer. Just keeping it for backward compatibility. */ - Lisp_Object BUFFER_INTERNAL_FIELD (buffer_file_type); /* Case table for case-conversion in this buffer. This char-table maps each char into its lower-case version. */ |