diff options
| author | Gerd Moellmann | 1999-10-30 21:12:39 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-30 21:12:39 +0000 |
| commit | 2bdedac1008b386f70f347db7424a3c6fcceef66 (patch) | |
| tree | 3d03b2df0ccd93aade5ca2624db8349e6bccd726 /lispref | |
| parent | 07dc417520f8a433fbe32bfb8ec753d8a3302819 (diff) | |
| download | emacs-2bdedac1008b386f70f347db7424a3c6fcceef66.tar.gz emacs-2bdedac1008b386f70f347db7424a3c6fcceef66.zip | |
*** empty log message ***
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/debugging.texi | 2 | ||||
| -rw-r--r-- | lispref/edebug.texi | 2 | ||||
| -rw-r--r-- | lispref/sequences.texi | 4 |
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 | |||
| 732 | old indentation is probably appropriate to the intended parentheses. | 732 | old 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 |
| 735 | the old indentation actually fit the intended nesting of parentheses, | 735 | the old indentation actually fits the intended nesting of parentheses, |
| 736 | and you have put back those parentheses, @kbd{C-M-q} should not change | 736 | and you have put back those parentheses, @kbd{C-M-q} should not change |
| 737 | anything. | 737 | anything. |
| 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 |
| 99 | the Lisp code you are debugging. This is referred to as the @dfn{source | 99 | the Lisp code you are debugging. This is referred to as the @dfn{source |
| 100 | code buffer}, and is is temporarily read-only. | 100 | code 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 |
| 103 | executing. Point initially shows where within the line the function is | 103 | executing. 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 |
| 223 | general array; its elements can be any Lisp objects. A string is a | 223 | general array; its elements can be any Lisp objects. A string is a |
| 224 | specialized array; its elements must be characters (i.e., integers | 224 | specialized array; its elements must be characters. Each type of array |
| 225 | between 0 and 255). Each type of array has its own read syntax. | 225 | has 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: |