comparison src/buffer.h @ 42644:7cc52563d4fd

Comment fixes.
author Pavel Jan?k <Pavel@Janik.cz>
date Thu, 10 Jan 2002 11:13:17 +0000
parents 32f317cd7f01
children f15b9906481d 7b6dd9fc65ad
comparison
equal deleted inserted replaced
42643:1ca738b840ce 42644:7cc52563d4fd
197 } \ 197 } \
198 } \ 198 } \
199 while (0) 199 while (0)
200 200
201 201
202 /* Macros to set PT in the current buffer, or another buffer.. */ 202 /* Macros to set PT in the current buffer, or another buffer. */
203 203
204 #define SET_PT(position) (set_point (current_buffer, (position))) 204 #define SET_PT(position) (set_point (current_buffer, (position)))
205 #define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position))) 205 #define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position)))
206 206
207 #define SET_PT_BOTH(position, byte) \ 207 #define SET_PT_BOTH(position, byte) \
538 because local variables have to be right in the struct buffer. 538 because local variables have to be right in the struct buffer.
539 So we copy it around in set_buffer_internal. 539 So we copy it around in set_buffer_internal.
540 This comes before `name' because it is marked in a special way. */ 540 This comes before `name' because it is marked in a special way. */
541 Lisp_Object undo_list; 541 Lisp_Object undo_list;
542 542
543 /* Everything from here down must be a Lisp_Object */ 543 /* Everything from here down must be a Lisp_Object. */
544 544
545 /* The name of this buffer. */ 545 /* The name of this buffer. */
546 Lisp_Object name; 546 Lisp_Object name;
547 547
548 /* The name of the file visited in this buffer, or nil. */ 548 /* The name of the file visited in this buffer, or nil. */
591 /* This buffer's syntax table. */ 591 /* This buffer's syntax table. */
592 Lisp_Object syntax_table; 592 Lisp_Object syntax_table;
593 /* This buffer's category table. */ 593 /* This buffer's category table. */
594 Lisp_Object category_table; 594 Lisp_Object category_table;
595 595
596 /* Values of several buffer-local variables */ 596 /* Values of several buffer-local variables. */
597 /* tab-width is buffer-local so that redisplay can find it 597 /* tab-width is buffer-local so that redisplay can find it
598 in buffers that are not current */ 598 in buffers that are not current. */
599 Lisp_Object case_fold_search; 599 Lisp_Object case_fold_search;
600 Lisp_Object tab_width; 600 Lisp_Object tab_width;
601 Lisp_Object fill_column; 601 Lisp_Object fill_column;
602 Lisp_Object left_margin; 602 Lisp_Object left_margin;
603 /* Function to call when insert space past fill column. */ 603 /* Function to call when insert space past fill column. */
661 661
662 /* Coding system to be used for encoding the buffer contents on 662 /* Coding system to be used for encoding the buffer contents on
663 saving. */ 663 saving. */
664 Lisp_Object buffer_file_coding_system; 664 Lisp_Object buffer_file_coding_system;
665 665
666 /* List of symbols naming the file format used for visited file. */ 666 /* List of symbols naming the file format used for visited file. */
667 Lisp_Object file_format; 667 Lisp_Object file_format;
668 668
669 /* True if the newline position cache and width run cache are 669 /* True if the newline position cache and width run cache are
670 enabled. See search.c and indent.c. */ 670 enabled. See search.c and indent.c. */
671 Lisp_Object cache_long_line_scans; 671 Lisp_Object cache_long_line_scans;