aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-04 04:00:46 +0000
committerJuanma Barranquero2009-10-04 04:00:46 +0000
commita86cd3957b134f77a0ecb65a3514bd2856f60325 (patch)
treedf45e3badc92f8477e65cf040ffb246a4a19f7b1
parent2b34df4ebc935a834a77b930b35c4a42f7236440 (diff)
downloademacs-a86cd3957b134f77a0ecb65a3514bd2856f60325.tar.gz
emacs-a86cd3957b134f77a0ecb65a3514bd2856f60325.zip
* anti.texi (Antinews):
* macros.texi (Indenting Macros): * strings.texi (Creating Strings, Case Conversion): Remove duplicate words.
-rw-r--r--doc/lispref/ChangeLog11
-rw-r--r--doc/lispref/anti.texi2
-rw-r--r--doc/lispref/macros.texi2
-rw-r--r--doc/lispref/strings.texi8
4 files changed, 15 insertions, 8 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 1fcb1d3533a..81d3290702a 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,10 @@
12009-10-04 Juanma Barranquero <lekktu@gmail.com>
2
3 * anti.texi (Antinews):
4 * macros.texi (Indenting Macros):
5 * strings.texi (Creating Strings, Case Conversion):
6 Remove duplicate words.
7
12009-10-01 Michael Albinus <michael.albinus@gmx.de> 82009-10-01 Michael Albinus <michael.albinus@gmx.de>
2 9
3 * files.texi (Create/Delete Dirs): delete-directory has an 10 * files.texi (Create/Delete Dirs): delete-directory has an
@@ -32,7 +39,7 @@
32 39
332009-09-11 Alan Mackenzie <acm@muc.de> 402009-09-11 Alan Mackenzie <acm@muc.de>
34 41
35 * os.texi (Terminal Output): document `send-string-to-terminal' in 42 * os.texi (Terminal Output): Document `send-string-to-terminal' in
36 batch mode. 43 batch mode.
37 44
382009-09-01 Glenn Morris <rgm@gnu.org> 452009-09-01 Glenn Morris <rgm@gnu.org>
@@ -7722,7 +7729,7 @@
77222002-08-05 Per Abrahamsen <abraham@dina.kvl.dk> 77292002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
7723 7730
7724 * customize.texi (Splicing into Lists): Fixed example. 7731 * customize.texi (Splicing into Lists): Fixed example.
7725 Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr> 7732 Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>.
7726 7733
77272002-06-17 Juanma Barranquero <lektu@terra.es> 77342002-06-17 Juanma Barranquero <lektu@terra.es>
7728 7735
diff --git a/doc/lispref/anti.texi b/doc/lispref/anti.texi
index df4efdf030c..9fe59a1b992 100644
--- a/doc/lispref/anti.texi
+++ b/doc/lispref/anti.texi
@@ -36,7 +36,7 @@ handling of keybindings much more consistent.
36@item 36@item
37Temporarily-active regions are not created by giving the variable 37Temporarily-active regions are not created by giving the variable
38@code{transient-mark-mode} values of the form @code{(only 38@code{transient-mark-mode} values of the form @code{(only
39. @var{oldvar})}. We instead use a more more complicated scheme: 39. @var{oldvar})}. We instead use a more complicated scheme:
40setting @code{transient-mark-mode} to @code{only} enables Transient 40setting @code{transient-mark-mode} to @code{only} enables Transient
41Mark mode for the following command only, during which the value of 41Mark mode for the following command only, during which the value of
42@code{transient-mark-mode} is set to @code{identity}; if it is still 42@code{transient-mark-mode} is set to @code{identity}; if it is still
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi
index 935dc6553dc..a3563be18a6 100644
--- a/doc/lispref/macros.texi
+++ b/doc/lispref/macros.texi
@@ -682,7 +682,7 @@ either.
682@section Indenting Macros 682@section Indenting Macros
683 683
684 You can use the @code{declare} form in the macro definition to 684 You can use the @code{declare} form in the macro definition to
685specify how to @key{TAB} should indent indent calls to the macro. You 685specify how to @key{TAB} should indent calls to the macro. You
686write it like this: 686write it like this:
687 687
688@example 688@example
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 5dd5e802b89..5d76bbd6dd0 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -155,9 +155,9 @@ index @var{start} up to (but excluding) the character at the index
155@noindent 155@noindent
156In the above example, the index for @samp{a} is 0, the index for 156In the above example, the index for @samp{a} is 0, the index for
157@samp{b} is 1, and the index for @samp{c} is 2. The index 3---which 157@samp{b} is 1, and the index for @samp{c} is 2. The index 3---which
158is the the fourth character in the string---marks the character 158is the fourth character in the string---marks the character position
159position up to which the substring is copied. Thus, @samp{abc} is 159up to which the substring is copied. Thus, @samp{abc} is copied from
160copied from the string @code{"abcdefg"}. 160the string @code{"abcdefg"}.
161 161
162A negative number counts from the end of the string, so that @minus{}1 162A negative number counts from the end of the string, so that @minus{}1
163signifies the index of the last character of the string. For example: 163signifies the index of the last character of the string. For example:
@@ -952,7 +952,7 @@ character or a string, to upper case.
952When @var{string-or-char} is a string, this function returns a new 952When @var{string-or-char} is a string, this function returns a new
953string in which each letter in the argument that is lower case is 953string in which each letter in the argument that is lower case is
954converted to upper case. When @var{string-or-char} is a character, 954converted to upper case. When @var{string-or-char} is a character,
955this function returns the corresponding upper case character (an an 955this function returns the corresponding upper case character (an
956integer); if the original character is upper case, or is not a letter, 956integer); if the original character is upper case, or is not a letter,
957the return value is equal to the original character. 957the return value is equal to the original character.
958 958