diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-07-17 03:47:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-07-17 03:47:19 +0000 |
commit | a625ee20c817640e4d233043c5d776c8788b8f8a (patch) | |
tree | 86f3cb2b3db55f3c9d5dec538256f85440e26250 /src | |
parent | f209d77de52036d384b6987727c3f91debb4fbfb (diff) | |
download | emacs-a625ee20c817640e4d233043c5d776c8788b8f8a.tar.gz |
(Fmake_overlay): Doc fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/buffer.c | 10 |
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, doc: /* Create a new overlay with range BEG to END in BUFFER. 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 -front delimiter advance when text is inserted there. -The fifth arg REAR-ADVANCE, if non-nil, makes the -rear delimiter advance when text is inserted there. */) +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). +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). */) (beg, end, buffer, front_advance, rear_advance) Lisp_Object beg, end, buffer; Lisp_Object front_advance, rear_advance; |