comparison src/buffer.c @ 70816:8168db834af2

(syms_of_buffer, Fmake_overlay): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Sun, 21 May 2006 21:11:43 +0000
parents d6f5b85d7429
children 83b791ca7b11 c44562301a11
comparison
equal deleted inserted replaced
70815:1b4ea61692ff 70816:8168db834af2
3552 doc: /* Create a new overlay with range BEG to END in BUFFER. 3552 doc: /* Create a new overlay with range BEG to END in BUFFER.
3553 If omitted, BUFFER defaults to the current buffer. 3553 If omitted, BUFFER defaults to the current buffer.
3554 BEG and END may be integers or markers. 3554 BEG and END may be integers or markers.
3555 The fourth arg FRONT-ADVANCE, if non-nil, makes the marker 3555 The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3556 for the front of the overlay advance when text is inserted there 3556 for the front of the overlay advance when text is inserted there
3557 (which means the text *is not* included in the overlay). 3557 \(which means the text *is not* included in the overlay).
3558 The fifth arg REAR-ADVANCE, if non-nil, makes the marker 3558 The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3559 for the rear of the overlay advance when text is inserted there 3559 for the rear of the overlay advance when text is inserted there
3560 (which means the text *is* included in the overlay). */) 3560 \(which means the text *is* included in the overlay). */)
3561 (beg, end, buffer, front_advance, rear_advance) 3561 (beg, end, buffer, front_advance, rear_advance)
3562 Lisp_Object beg, end, buffer; 3562 Lisp_Object beg, end, buffer;
3563 Lisp_Object front_advance, rear_advance; 3563 Lisp_Object front_advance, rear_advance;
3564 { 3564 {
3565 Lisp_Object overlay; 3565 Lisp_Object overlay;
5737 BITMAPS is list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies 5737 BITMAPS is list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies
5738 the actual bitmap shown in the left or right fringe for the logical 5738 the actual bitmap shown in the left or right fringe for the logical
5739 indicator. LEFT and RIGHT are the bitmaps shown in the left and/or 5739 indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
5740 right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps 5740 right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
5741 are used only for the `bottom' and `one-line' indicators when the last 5741 are used only for the `bottom' and `one-line' indicators when the last
5742 (only) line in has no final newline. BITMAPS may also be a single 5742 \(only) line in has no final newline. BITMAPS may also be a single
5743 symbol which is used in both left and right fringes. */); 5743 symbol which is used in both left and right fringes. */);
5744 5744
5745 DEFVAR_PER_BUFFER ("fringe-cursor-alist", 5745 DEFVAR_PER_BUFFER ("fringe-cursor-alist",
5746 &current_buffer->fringe_cursor_alist, Qnil, 5746 &current_buffer->fringe_cursor_alist, Qnil,
5747 doc: /* *Mapping from logical to physical fringe cursor bitmaps. 5747 doc: /* *Mapping from logical to physical fringe cursor bitmaps.
5984 DEFVAR_PER_BUFFER ("line-spacing", 5984 DEFVAR_PER_BUFFER ("line-spacing",
5985 &current_buffer->extra_line_spacing, Qnil, 5985 &current_buffer->extra_line_spacing, Qnil,
5986 doc: /* Additional space to put between lines when displaying a buffer. 5986 doc: /* Additional space to put between lines when displaying a buffer.
5987 The space is measured in pixels, and put below lines on window systems. 5987 The space is measured in pixels, and put below lines on window systems.
5988 If value is a floating point number, it specifies the spacing relative 5988 If value is a floating point number, it specifies the spacing relative
5989 to the default frame line height. */); 5989 to the default frame line height. nil means add no extra space. */);
5990 5990
5991 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", 5991 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
5992 &current_buffer->cursor_in_non_selected_windows, Qnil, 5992 &current_buffer->cursor_in_non_selected_windows, Qnil,
5993 doc: /* *Cursor type to display in non-selected windows. 5993 doc: /* *Cursor type to display in non-selected windows.
5994 t means to use hollow box cursor. See `cursor-type' for other values. */); 5994 t means to use hollow box cursor. See `cursor-type' for other values. */);