aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-04-07 02:00:55 +0000
committerRichard M. Stallman2007-04-07 02:00:55 +0000
commit0bec517f13f57c6e9dde76ced6c4865f28bf3c48 (patch)
tree8c8e8b47d9d0f0bde0ae2899ca1ef2e37630359c
parent4b216c37290701f49320cdef011e0a5604b3dec0 (diff)
downloademacs-0bec517f13f57c6e9dde76ced6c4865f28bf3c48.tar.gz
emacs-0bec517f13f57c6e9dde76ced6c4865f28bf3c48.zip
Improve index entries. Remove redundant/useless ones.
(Text Properties, Examining Properties) (Special Properties): Use "property category" instead of "category" to refer to the `category' property.
-rw-r--r--lispref/text.texi26
1 files changed, 13 insertions, 13 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index c57fc500f45..d8fe090711c 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -540,7 +540,7 @@ newlines and tabs like any other characters).
540@section Deleting Text 540@section Deleting Text
541@cindex text deletion 541@cindex text deletion
542 542
543@cindex deletion vs killing 543@cindex deleting text vs killing
544 Deletion means removing part of the text in a buffer, without saving 544 Deletion means removing part of the text in a buffer, without saving
545it in the kill ring (@pxref{The Kill Ring}). Deleted text can't be 545it in the kill ring (@pxref{The Kill Ring}). Deleted text can't be
546yanked, but can be reinserted using the undo mechanism (@pxref{Undo}). 546yanked, but can be reinserted using the undo mechanism (@pxref{Undo}).
@@ -596,7 +596,7 @@ The value returned is always @code{nil}.
596@end deffn 596@end deffn
597 597
598@deffn Command delete-backward-char count &optional killp 598@deffn Command delete-backward-char count &optional killp
599@cindex delete previous char 599@cindex deleting previous char
600This command deletes @var{count} characters directly before point, or 600This command deletes @var{count} characters directly before point, or
601after point if @var{count} is negative. If @var{killp} is 601after point if @var{count} is negative. If @var{killp} is
602non-@code{nil}, then it saves the deleted characters in the kill ring. 602non-@code{nil}, then it saves the deleted characters in the kill ring.
@@ -1350,7 +1350,7 @@ You cannot specify any other buffer.
1350@end deffn 1350@end deffn
1351 1351
1352@deffn Command buffer-disable-undo &optional buffer-or-name 1352@deffn Command buffer-disable-undo &optional buffer-or-name
1353@cindex disable undo 1353@cindex disabling undo
1354This function discards the undo list of @var{buffer-or-name}, and disables 1354This function discards the undo list of @var{buffer-or-name}, and disables
1355further recording of undo information. As a result, it is no longer 1355further recording of undo information. As a result, it is no longer
1356possible to undo either previous changes or any subsequent changes. If 1356possible to undo either previous changes or any subsequent changes. If
@@ -1402,7 +1402,7 @@ leak memory if the user waits too long before answering the question.
1402@node Filling 1402@node Filling
1403@comment node-name, next, previous, up 1403@comment node-name, next, previous, up
1404@section Filling 1404@section Filling
1405@cindex filling, explicit 1405@cindex filling text
1406 1406
1407 @dfn{Filling} means adjusting the lengths of lines (by moving the line 1407 @dfn{Filling} means adjusting the lengths of lines (by moving the line
1408breaks) so that they are nearly (but no greater than) a specified 1408breaks) so that they are nearly (but no greater than) a specified
@@ -1433,7 +1433,6 @@ as @code{full}.
1433argument implies the value @code{full} for @var{justify}. 1433argument implies the value @code{full} for @var{justify}.
1434 1434
1435@deffn Command fill-paragraph justify 1435@deffn Command fill-paragraph justify
1436@cindex filling a paragraph
1437This command fills the paragraph at or after point. If 1436This command fills the paragraph at or after point. If
1438@var{justify} is non-@code{nil}, each line is justified as well. 1437@var{justify} is non-@code{nil}, each line is justified as well.
1439It uses the ordinary paragraph motion commands to find paragraph 1438It uses the ordinary paragraph motion commands to find paragraph
@@ -1680,7 +1679,7 @@ non-@code{nil}, then the line won't be broken there.
1680 1679
1681@node Adaptive Fill 1680@node Adaptive Fill
1682@section Adaptive Fill Mode 1681@section Adaptive Fill Mode
1683@cindex Adaptive Fill mode 1682@c @cindex Adaptive Fill mode "adaptive-fill-mode" is adjacent.
1684 1683
1685 When @dfn{Adaptive Fill Mode} is enabled, Emacs determines the fill 1684 When @dfn{Adaptive Fill Mode} is enabled, Emacs determines the fill
1686prefix automatically from the text in each paragraph being filled 1685prefix automatically from the text in each paragraph being filled
@@ -2565,8 +2564,9 @@ property @code{face} specifies the faces for displaying the character
2565list is to specify a name and ask what value corresponds to it. 2564list is to specify a name and ask what value corresponds to it.
2566 2565
2567 If a character has a @code{category} property, we call it the 2566 If a character has a @code{category} property, we call it the
2568@dfn{category} of the character. It should be a symbol. The properties 2567@dfn{property category} of the character. It should be a symbol. The
2569of the symbol serve as defaults for the properties of the character. 2568properties of the symbol serve as defaults for the properties of the
2569character.
2570 2570
2571 Copying text between strings and buffers preserves the properties 2571 Copying text between strings and buffers preserves the properties
2572along with the characters; this includes such diverse functions as 2572along with the characters; this includes such diverse functions as
@@ -2613,7 +2613,7 @@ string). The argument @var{object} is optional and defaults to the
2613current buffer. 2613current buffer.
2614 2614
2615If there is no @var{prop} property strictly speaking, but the character 2615If there is no @var{prop} property strictly speaking, but the character
2616has a category that is a symbol, then @code{get-text-property} returns 2616has a property category that is a symbol, then @code{get-text-property} returns
2617the @var{prop} property of that symbol. 2617the @var{prop} property of that symbol.
2618@end defun 2618@end defun
2619 2619
@@ -2960,12 +2960,13 @@ names that control filling and property inheritance. All other names
2960have no standard meaning, and you can use them as you like. 2960have no standard meaning, and you can use them as you like.
2961 2961
2962@table @code 2962@table @code
2963@cindex category of text character 2963@cindex property category of text character
2964@kindex category @r{(text property)} 2964@kindex category @r{(text property)}
2965@item category 2965@item category
2966If a character has a @code{category} property, we call it the 2966If a character has a @code{category} property, we call it the
2967@dfn{category} of the character. It should be a symbol. The properties 2967@dfn{property category} of the character. It should be a symbol. The
2968of the symbol serve as defaults for the properties of the character. 2968properties of this symbol serve as defaults for the properties of the
2969character.
2969 2970
2970@item face 2971@item face
2971@cindex face codes of text 2972@cindex face codes of text
@@ -3046,7 +3047,6 @@ The character's @code{face} property, or absence of one, is valid.
3046@end table 3047@end table
3047 3048
3048@item display 3049@item display
3049@kindex display @r{(text property)}
3050This property activates various features that change the 3050This property activates various features that change the
3051way text is displayed. For example, it can make text appear taller 3051way text is displayed. For example, it can make text appear taller
3052or shorter, higher or lower, wider or narrow, or replaced with an image. 3052or shorter, higher or lower, wider or narrow, or replaced with an image.