diff options
author | Pavel Janík <Pavel@Janik.cz> | 2002-01-10 11:13:17 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2002-01-10 11:13:17 +0000 |
commit | 33f1148dad269d8c81a8d01dd0cf101512e70322 (patch) | |
tree | a65d0880091e61a3b72ef91244a30a70850b0c85 /src/buffer.h | |
parent | 0e9f0c4419d4954378c5ec2c192c2c18cbc82c95 (diff) | |
download | emacs-33f1148dad269d8c81a8d01dd0cf101512e70322.tar.gz |
Comment fixes.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 10 |
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. */ while (0) -/* Macros to set PT in the current buffer, or another buffer.. */ +/* Macros to set PT in the current buffer, or another buffer. */ #define SET_PT(position) (set_point (current_buffer, (position))) #define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position))) @@ -540,7 +540,7 @@ struct buffer This comes before `name' because it is marked in a special way. */ Lisp_Object undo_list; - /* Everything from here down must be a Lisp_Object */ + /* Everything from here down must be a Lisp_Object. */ /* The name of this buffer. */ Lisp_Object name; @@ -593,9 +593,9 @@ struct buffer /* This buffer's category table. */ Lisp_Object category_table; - /* Values of several buffer-local variables */ + /* Values of several buffer-local variables. */ /* tab-width is buffer-local so that redisplay can find it - in buffers that are not current */ + in buffers that are not current. */ Lisp_Object case_fold_search; Lisp_Object tab_width; Lisp_Object fill_column; @@ -663,7 +663,7 @@ struct buffer saving. */ Lisp_Object buffer_file_coding_system; - /* List of symbols naming the file format used for visited file. */ + /* List 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 |