aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorPavel Janík2002-01-10 11:13:17 +0000
committerPavel Janík2002-01-10 11:13:17 +0000
commit33f1148dad269d8c81a8d01dd0cf101512e70322 (patch)
treea65d0880091e61a3b72ef91244a30a70850b0c85 /src/buffer.h
parent0e9f0c4419d4954378c5ec2c192c2c18cbc82c95 (diff)
downloademacs-33f1148dad269d8c81a8d01dd0cf101512e70322.tar.gz
emacs-33f1148dad269d8c81a8d01dd0cf101512e70322.zip
Comment fixes.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buffer.h b/src/buffer.h
index b6e636e7873..ecd2e742153 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -199,7 +199,7 @@ Boston, MA 02111-1307, USA. */
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)))
@@ -540,7 +540,7 @@ struct buffer
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;
@@ -593,9 +593,9 @@ struct buffer
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;
@@ -663,7 +663,7 @@ struct buffer
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