diff options
| author | Kenichi Handa | 1997-06-09 12:59:11 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-06-09 12:59:11 +0000 |
| commit | c204d14f43b42b2174f87cb1acd25c3341b9c083 (patch) | |
| tree | 07cdac3a32a3500ec420d11f17079c69007d96eb /src | |
| parent | c71b5d9b4978863298cfb28a3b95a267698b1355 (diff) | |
| download | emacs-c204d14f43b42b2174f87cb1acd25c3341b9c083.tar.gz emacs-c204d14f43b42b2174f87cb1acd25c3341b9c083.zip | |
(struct buffer): New member buffer_file_coding_system.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index 0a3100ebcb3..3352b235b30 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -389,6 +389,10 @@ struct buffer | |||
| 389 | form of characters, not a binary code. */ | 389 | form of characters, not a binary code. */ |
| 390 | Lisp_Object enable_multibyte_characters; | 390 | Lisp_Object enable_multibyte_characters; |
| 391 | 391 | ||
| 392 | /* Coding system to be used for encoding the buffer contents on | ||
| 393 | saving. */ | ||
| 394 | Lisp_Object buffer_file_coding_system; | ||
| 395 | |||
| 392 | /* List of symbols naming the file format used for visited file. */ | 396 | /* List of symbols naming the file format used for visited file. */ |
| 393 | Lisp_Object file_format; | 397 | Lisp_Object file_format; |
| 394 | 398 | ||