aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-30 21:12:39 +0000
committerGerd Moellmann1999-10-30 21:12:39 +0000
commit2bdedac1008b386f70f347db7424a3c6fcceef66 (patch)
tree3d03b2df0ccd93aade5ca2624db8349e6bccd726 /lispref
parent07dc417520f8a433fbe32bfb8ec753d8a3302819 (diff)
downloademacs-2bdedac1008b386f70f347db7424a3c6fcceef66.tar.gz
emacs-2bdedac1008b386f70f347db7424a3c6fcceef66.zip
*** empty log message ***
Diffstat (limited to 'lispref')
-rw-r--r--lispref/debugging.texi2
-rw-r--r--lispref/edebug.texi2
-rw-r--r--lispref/sequences.texi4
3 files changed, 4 insertions, 4 deletions
diff --git a/lispref/debugging.texi b/lispref/debugging.texi
index 62e78263ff8..bb719ee99a6 100644
--- a/lispref/debugging.texi
+++ b/lispref/debugging.texi
@@ -732,7 +732,7 @@ found the discrepancy, undo the @kbd{C-M-q} with @kbd{C-_}, since the
732old indentation is probably appropriate to the intended parentheses. 732old indentation is probably appropriate to the intended parentheses.
733 733
734 After you think you have fixed the problem, use @kbd{C-M-q} again. If 734 After you think you have fixed the problem, use @kbd{C-M-q} again. If
735the old indentation actually fit the intended nesting of parentheses, 735the old indentation actually fits the intended nesting of parentheses,
736and you have put back those parentheses, @kbd{C-M-q} should not change 736and you have put back those parentheses, @kbd{C-M-q} should not change
737anything. 737anything.
738 738
diff --git a/lispref/edebug.texi b/lispref/edebug.texi
index d06275bb9f7..6f7b3af59f4 100644
--- a/lispref/edebug.texi
+++ b/lispref/edebug.texi
@@ -97,7 +97,7 @@ which stops execution. @xref{Edebug Execution Modes}.
97 97
98 Within Edebug, you normally view an Emacs buffer showing the source of 98 Within Edebug, you normally view an Emacs buffer showing the source of
99the Lisp code you are debugging. This is referred to as the @dfn{source 99the Lisp code you are debugging. This is referred to as the @dfn{source
100code buffer}, and is is temporarily read-only. 100code buffer}, and it is temporarily read-only.
101 101
102 An arrow at the left margin indicates the line where the function is 102 An arrow at the left margin indicates the line where the function is
103executing. Point initially shows where within the line the function is 103executing. Point initially shows where within the line the function is
diff --git a/lispref/sequences.texi b/lispref/sequences.texi
index 0b9e2901977..dd64c9af269 100644
--- a/lispref/sequences.texi
+++ b/lispref/sequences.texi
@@ -221,8 +221,8 @@ in the list.
221 Emacs defines four types of array, all one-dimensional: @dfn{strings}, 221 Emacs defines four types of array, all one-dimensional: @dfn{strings},
222@dfn{vectors}, @dfn{bool-vectors} and @dfn{char-tables}. A vector is a 222@dfn{vectors}, @dfn{bool-vectors} and @dfn{char-tables}. A vector is a
223general array; its elements can be any Lisp objects. A string is a 223general array; its elements can be any Lisp objects. A string is a
224specialized array; its elements must be characters (i.e., integers 224specialized array; its elements must be characters. Each type of array
225between 0 and 255). Each type of array has its own read syntax. 225has its own read syntax.
226@xref{String Type}, and @ref{Vector Type}. 226@xref{String Type}, and @ref{Vector Type}.
227 227
228 All four kinds of array share these characteristics: 228 All four kinds of array share these characteristics: