diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-17 18:10:19 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-17 18:10:19 +0000 |
commit | 585b0a89a3ef7b8828409b302d44cfce2cea0ff6 (patch) | |
tree | 02db4645901b72e4f56b850e48ce469cb920919a /src/buffer.h | |
parent | 5b6988a0a4f0fdae8c64cba03f4f2f40f46a3fc7 (diff) | |
download | emacs-585b0a89a3ef7b8828409b302d44cfce2cea0ff6.tar.gz |
(struct buffer): Add file_format member.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index af3dd0400e3..e9c7d56f6a4 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -356,6 +356,9 @@ struct buffer /* Position where the overlay lists are centered. */ Lisp_Object overlay_center; + /* Lisp of symbols naming the file format used for visited file. */ + Lisp_Object file_format; + /* True if the newline position cache and width run cache are enabled. See search.c and indent.c. */ Lisp_Object cache_long_line_scans; |