summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-01-08 09:21:59 +0000
committerRichard M. Stallman <rms@gnu.org>1994-01-08 09:21:59 +0000
commit703fa6a920978608d4dce1395318243ef1155d7c (patch)
treedaabdad020e1ce55136046e2f5438cbbc7ad850d /src/buffer.h
parentee9af334918a54103e405657f2ed3ba3b5ee503e (diff)
downloademacs-703fa6a920978608d4dce1395318243ef1155d7c.tar.gz
[MSDOS]: New buffer-local variable:
buffer-file-type to handle DOS newlines.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 9dce1ae0a36..15f7c51f437 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -244,6 +244,10 @@ struct buffer
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;