]> code.delx.au - gnu-emacs/blobdiff - src/buffer.h
(LD_SWITCH_SYSTEM_TEMACS): Define this instead of LD_SWITCH_SYSTEM.
[gnu-emacs] / src / buffer.h
index 0a3100ebcb3ad405a8066b5ed8061293a0ced947..4f96dd08834cc2c4712193f17cecdd8a7d70361d 100644 (file)
@@ -389,6 +389,10 @@ struct buffer
        form of characters, not a binary code.  */
     Lisp_Object enable_multibyte_characters;
 
+    /* Coding system to be used for encoding the buffer contents on
+       saving.  */
+    Lisp_Object buffer_file_coding_system;
+
     /* List of symbols naming the file format used for visited file. */
     Lisp_Object file_format;
 
@@ -487,10 +491,6 @@ extern struct buffer buffer_local_symbols;
    always be safely stored in any slot.  */
 extern struct buffer buffer_local_types;
 \f
-/* Point in the current buffer.  This is an obsolete alias
-   and should be eliminated.  */
-#define point (current_buffer->pt + 0)
-
 /* Return the address of position N.  No range checking.  */
 #define POS_ADDR(n) (((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1)