summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-05-21 21:11:48 +0000
committerRichard M. Stallman <rms@gnu.org>2006-05-21 21:11:48 +0000
commit63af60550bda8d2f04b3ed3f63a5f4a59ea9ef2b (patch)
tree678841b6ff75149462b5657da83e912fb74fd8d6
parent5c9c3eba64ba975a32b3d4e8555e1124a50b6e0a (diff)
downloademacs-63af60550bda8d2f04b3ed3f63a5f4a59ea9ef2b.tar.gz
(syms_of_buffer, Fmake_overlay): Doc fixes.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/buffer.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c670f757962..52693075982 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-21 Richard Stallman <rms@gnu.org>
+
+ * buffer.c (syms_of_buffer, Fmake_overlay): Doc fixes.
+
2006-05-20 Kim F. Storm <storm@cua.dk>
* xfaces.c (best_matching_font): Fix crash in 2006-05-17 change.
diff --git a/src/buffer.c b/src/buffer.c
index c03c58a39f3..f53f67ca2c2 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -3554,10 +3554,10 @@ If omitted, BUFFER defaults to the current buffer.
BEG and END may be integers or markers.
The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
for the front of the overlay advance when text is inserted there
-(which means the text *is not* included in the overlay).
+\(which means the text *is not* included in the overlay).
The fifth arg REAR-ADVANCE, if non-nil, makes the marker
for the rear of the overlay advance when text is inserted there
-(which means the text *is* included in the overlay). */)
+\(which means the text *is* included in the overlay). */)
(beg, end, buffer, front_advance, rear_advance)
Lisp_Object beg, end, buffer;
Lisp_Object front_advance, rear_advance;
@@ -5739,7 +5739,7 @@ the actual bitmap shown in the left or right fringe for the logical
indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
are used only for the `bottom' and `one-line' indicators when the last
-(only) line in has no final newline. BITMAPS may also be a single
+\(only) line in has no final newline. BITMAPS may also be a single
symbol which is used in both left and right fringes. */);
DEFVAR_PER_BUFFER ("fringe-cursor-alist",
@@ -5986,7 +5986,7 @@ this variable has no effect; the cursor appears as a hollow box. */);
doc: /* Additional space to put between lines when displaying a buffer.
The space is measured in pixels, and put below lines on window systems.
If value is a floating point number, it specifies the spacing relative
-to the default frame line height. */);
+to the default frame line height. nil means add no extra space. */);
DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
&current_buffer->cursor_in_non_selected_windows, Qnil,