Mercurial > emacs
diff src/buffer.h @ 5502:2b48fd9bc80e
[MSDOS]: New buffer-local variable:
buffer-file-type to handle DOS newlines.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 08 Jan 1994 09:21:59 +0000 |
| parents | e94a593c3952 |
| children | d3c064f0062e |
line wrap: on
line diff
--- a/src/buffer.h Sat Jan 08 09:21:13 1994 +0000 +++ b/src/buffer.h Sat Jan 08 09:21:59 1994 +0000 @@ -244,6 +244,10 @@ Lisp_Object left_margin; /* Function to call when insert space past fill column */ Lisp_Object auto_fill_function; +#ifdef MSDOS + /* nil: text, t: binary. */ + Lisp_Object buffer_file_type; +#endif /* String of length 256 mapping each char to its lower-case version. */ Lisp_Object downcase_table;
