diff options
| author | Juanma Barranquero | 2002-10-17 16:01:23 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-10-17 16:01:23 +0000 |
| commit | d6567030a2d3c336a031bc97eea4af2df95f3d61 (patch) | |
| tree | b6405515031804b36bb20b228552db16535b427c | |
| parent | f8b72742d00ce63b31ea064b679fc93e5086e0e1 (diff) | |
| download | emacs-d6567030a2d3c336a031bc97eea4af2df95f3d61.tar.gz emacs-d6567030a2d3c336a031bc97eea4af2df95f3d61.zip | |
(syms_of_lread): Fix typos.
| -rw-r--r-- | src/lread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c index d07775d0ad8..5dc3cc9346e 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -3718,13 +3718,13 @@ the toplevel; bind it instead. */); | |||
| 3718 | Vread_with_symbol_positions = Qnil; | 3718 | Vread_with_symbol_positions = Qnil; |
| 3719 | 3719 | ||
| 3720 | DEFVAR_LISP ("read-symbol-positions-list", &Vread_symbol_positions_list, | 3720 | DEFVAR_LISP ("read-symbol-positions-list", &Vread_symbol_positions_list, |
| 3721 | doc: /* An list mapping read symbols to their positions. | 3721 | doc: /* A list mapping read symbols to their positions. |
| 3722 | This variable is modified during calls to `read' or | 3722 | This variable is modified during calls to `read' or |
| 3723 | `read-from-string', but only when `read-with-symbol-positions' is | 3723 | `read-from-string', but only when `read-with-symbol-positions' is |
| 3724 | non-nil. | 3724 | non-nil. |
| 3725 | 3725 | ||
| 3726 | Each element of the list looks like (SYMBOL . CHAR-POSITION), where | 3726 | Each element of the list looks like (SYMBOL . CHAR-POSITION), where |
| 3727 | CHAR-POSITION is an integer giving the offset of that occurence of the | 3727 | CHAR-POSITION is an integer giving the offset of that occurrence of the |
| 3728 | symbol from the position where `read' or `read-from-string' started. | 3728 | symbol from the position where `read' or `read-from-string' started. |
| 3729 | 3729 | ||
| 3730 | Note that a symbol will appear multiple times in this list, if it was | 3730 | Note that a symbol will appear multiple times in this list, if it was |