comparison lispref/text.texi @ 27187:f6b52258db6a

Remove obsolete @tindex commands.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 05 Jan 2000 14:29:37 +0000
parents 4b1a67a46d8c
children d2e5f1b7d8e2
comparison
equal deleted inserted replaced
27186:eb645a473bf8 27187:f6b52258db6a
551 551
552 The value returned is always @code{nil}. 552 The value returned is always @code{nil}.
553 @end deffn 553 @end deffn
554 554
555 @defopt backward-delete-char-untabify-method 555 @defopt backward-delete-char-untabify-method
556 @tindex backward-delete-char-untabify-method
557 This option specifies how @code{backward-delete-char-untabify} should 556 This option specifies how @code{backward-delete-char-untabify} should
558 deal with whitespace. Possible values include @code{untabify}, the 557 deal with whitespace. Possible values include @code{untabify}, the
559 default, meaning convert a tab to many spaces and delete one; 558 default, meaning convert a tab to many spaces and delete one;
560 @code{hungry}, meaning delete all the whitespace characters before point 559 @code{hungry}, meaning delete all the whitespace characters before point
561 with one command, and @code{nil}, meaning do nothing special for 560 with one command, and @code{nil}, meaning do nothing special for
1414 mode, @kbd{C-j} indents to this column. This variable automatically 1413 mode, @kbd{C-j} indents to this column. This variable automatically
1415 becomes buffer-local when set in any fashion. 1414 becomes buffer-local when set in any fashion.
1416 @end defvar 1415 @end defvar
1417 1416
1418 @defvar fill-nobreak-predicate 1417 @defvar fill-nobreak-predicate
1419 @tindex fill-nobreak-predicate
1420 This variable gives major modes a way to specify not to break a line at 1418 This variable gives major modes a way to specify not to break a line at
1421 certain places. Its value should be a function. This function is 1419 certain places. Its value should be a function. This function is
1422 called during filling, with no arguments and with point located at the 1420 called during filling, with no arguments and with point located at the
1423 place where a break is being considered. If the function returns 1421 place where a break is being considered. If the function returns
1424 non-@code{nil}, then the line won't be broken there. 1422 non-@code{nil}, then the line won't be broken there.
2531 position less than or equal to @var{pos}; it equals @var{pos} only if 2529 position less than or equal to @var{pos}; it equals @var{pos} only if
2532 @var{limit} equals @var{pos}. 2530 @var{limit} equals @var{pos}.
2533 @end defun 2531 @end defun
2534 2532
2535 @defun next-char-property-change position &optional limit 2533 @defun next-char-property-change position &optional limit
2536 @tindex next-char-property-change
2537 This is like @code{next-property-change} except that it considers 2534 This is like @code{next-property-change} except that it considers
2538 overlay properties as well as text properties. There is no @var{object} 2535 overlay properties as well as text properties. There is no @var{object}
2539 operand because this function operates only on the current buffer. It 2536 operand because this function operates only on the current buffer. It
2540 returns the next address at which either kind of property changes. 2537 returns the next address at which either kind of property changes.
2541 @end defun 2538 @end defun
2542 2539
2543 @defun previous-char-property-change position &optional limit 2540 @defun previous-char-property-change position &optional limit
2544 @tindex previous-char-property-change
2545 This is like @code{next-char-property-change}, but scans back from 2541 This is like @code{next-char-property-change}, but scans back from
2546 @var{position} instead of forward. 2542 @var{position} instead of forward.
2547 @end defun 2543 @end defun
2548 2544
2549 @defun text-property-any start end prop value &optional object 2545 @defun text-property-any start end prop value &optional object
3530 changed text, its length is simply the difference between the first two 3526 changed text, its length is simply the difference between the first two
3531 arguments. 3527 arguments.
3532 @end defvar 3528 @end defvar
3533 3529
3534 @defmac combine-after-change-calls body... 3530 @defmac combine-after-change-calls body...
3535 @tindex combine-after-change-calls
3536 The macro executes @var{body} normally, but arranges to call the 3531 The macro executes @var{body} normally, but arranges to call the
3537 after-change functions just once for a series of several changes---if 3532 after-change functions just once for a series of several changes---if
3538 that seems safe. 3533 that seems safe.
3539 3534
3540 If a program makes several text changes in the same area of the buffer, 3535 If a program makes several text changes in the same area of the buffer,