# HG changeset patch # User Richard M. Stallman # Date 1121572039 0 # Node ID a1807609d4c203daace95e1bafd9af6700af7440 # Parent 4dcefa44889e88cd180cd27791971859a4e8d5af (Fmake_overlay): Doc fix. diff -r 4dcefa44889e -r a1807609d4c2 src/buffer.c --- a/src/buffer.c Sun Jul 17 03:45:41 2005 +0000 +++ b/src/buffer.c Sun Jul 17 03:47:19 2005 +0000 @@ -3557,10 +3557,12 @@ 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;