aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 4001801922f..01be485fcc0 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -3573,10 +3573,12 @@ DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
3573 doc: /* Create a new overlay with range BEG to END in BUFFER. 3573 doc: /* Create a new overlay with range BEG to END in BUFFER.
3574If omitted, BUFFER defaults to the current buffer. 3574If omitted, BUFFER defaults to the current buffer.
3575BEG and END may be integers or markers. 3575BEG and END may be integers or markers.
3576The fourth arg FRONT-ADVANCE, if non-nil, makes the 3576The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3577front delimiter advance when text is inserted there. 3577for the front of the overlay advance when text is inserted there
3578The fifth arg REAR-ADVANCE, if non-nil, makes the 3578(which means the text *is not* included in the overlay).
3579rear delimiter advance when text is inserted there. */) 3579The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3580for the rear of the overlay advance when text is inserted there
3581(which means the text *is* included in the overlay). */)
3580 (beg, end, buffer, front_advance, rear_advance) 3582 (beg, end, buffer, front_advance, rear_advance)
3581 Lisp_Object beg, end, buffer; 3583 Lisp_Object beg, end, buffer;
3582 Lisp_Object front_advance, rear_advance; 3584 Lisp_Object front_advance, rear_advance;
@@ -5743,7 +5745,7 @@ that fraction of the window's height from the bottom of the window.
5743When the value is 0.0, point goes at the bottom line, which in the simple 5745When the value is 0.0, point goes at the bottom line, which in the simple
5744case that you moved off with C-f means scrolling just one line. 1.0 means 5746case that you moved off with C-f means scrolling just one line. 1.0 means
5745point goes at the top, so that in that simple case, the window 5747point goes at the top, so that in that simple case, the window
5746window scrolls by a full window height. Meaningful values are 5748scrolls by a full window height. Meaningful values are
5747between 0.0 and 1.0, inclusive. */); 5749between 0.0 and 1.0, inclusive. */);
5748 5750
5749 DEFVAR_PER_BUFFER ("scroll-down-aggressively", 5751 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
@@ -5756,7 +5758,7 @@ that fraction of the window's height from the top of the window.
5756When the value is 0.0, point goes at the top line, which in the simple 5758When the value is 0.0, point goes at the top line, which in the simple
5757case that you moved off with C-b means scrolling just one line. 1.0 means 5759case that you moved off with C-b means scrolling just one line. 1.0 means
5758point goes at the bottom, so that in that simple case, the window 5760point goes at the bottom, so that in that simple case, the window
5759window scrolls by a full window height. Meaningful values are 5761scrolls by a full window height. Meaningful values are
5760between 0.0 and 1.0, inclusive. */); 5762between 0.0 and 1.0, inclusive. */);
5761 5763
5762/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, 5764/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
@@ -5944,15 +5946,15 @@ is a member of the list. */);
5944 doc: /* Cursor to use when this buffer is in the selected window. 5946 doc: /* Cursor to use when this buffer is in the selected window.
5945Values are interpreted as follows: 5947Values are interpreted as follows:
5946 5948
5947 t use the cursor specified for the frame 5949 t use the cursor specified for the frame
5948 nil don't display a cursor 5950 nil don't display a cursor
5949 box display a filled box cursor 5951 box display a filled box cursor
5950 hollow display a hollow box cursor 5952 hollow display a hollow box cursor
5951 bar display a vertical bar cursor with default width 5953 bar display a vertical bar cursor with default width
5952 (bar . WIDTH) display a vertical bar cursor with width WIDTH 5954 (bar . WIDTH) display a vertical bar cursor with width WIDTH
5953 hbar display a horizontal bar cursor with default height 5955 hbar display a horizontal bar cursor with default height
5954 (hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT 5956 (hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT
5955 ANYTHING ELSE display a hollow box cursor. 5957 ANYTHING ELSE display a hollow box cursor
5956 5958
5957When the buffer is displayed in a nonselected window, 5959When the buffer is displayed in a nonselected window,
5958this variable has no effect; the cursor appears as a hollow box. */); 5960this variable has no effect; the cursor appears as a hollow box. */);