aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman2005-07-17 03:47:19 +0000
committerRichard M. Stallman2005-07-17 03:47:19 +0000
commita625ee20c817640e4d233043c5d776c8788b8f8a (patch)
tree86f3cb2b3db55f3c9d5dec538256f85440e26250 /src/buffer.c
parentf209d77de52036d384b6987727c3f91debb4fbfb (diff)
downloademacs-a625ee20c817640e4d233043c5d776c8788b8f8a.tar.gz
emacs-a625ee20c817640e4d233043c5d776c8788b8f8a.zip
(Fmake_overlay): Doc fix.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 43727ce7b9d..d45546d0efb 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -3557,10 +3557,12 @@ DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
3557 doc: /* Create a new overlay with range BEG to END in BUFFER. 3557 doc: /* Create a new overlay with range BEG to END in BUFFER.
3558If omitted, BUFFER defaults to the current buffer. 3558If omitted, BUFFER defaults to the current buffer.
3559BEG and END may be integers or markers. 3559BEG and END may be integers or markers.
3560The fourth arg FRONT-ADVANCE, if non-nil, makes the 3560The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3561front delimiter advance when text is inserted there. 3561for the front of the overlay advance when text is inserted there
3562The fifth arg REAR-ADVANCE, if non-nil, makes the 3562(which means the text *is not* included in the overlay).
3563rear delimiter advance when text is inserted there. */) 3563The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3564for the rear of the overlay advance when text is inserted there
3565(which means the text *is* included in the overlay). */)
3564 (beg, end, buffer, front_advance, rear_advance) 3566 (beg, end, buffer, front_advance, rear_advance)
3565 Lisp_Object beg, end, buffer; 3567 Lisp_Object beg, end, buffer;
3566 Lisp_Object front_advance, rear_advance; 3568 Lisp_Object front_advance, rear_advance;