diff options
| author | Stefan Kangas | 2021-09-12 18:33:03 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2021-09-12 18:36:49 +0200 |
| commit | fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030 (patch) | |
| tree | bdd67b63d55da0b41e367feecc20e02ada92e92d /lisp/textmodes | |
| parent | 79113b5e4a7d69ec0fb3401b763292d91b54632e (diff) | |
| download | emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.gz emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.zip | |
; Fix symbol quoting typos
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/rst.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el index 1471be0ecd6..46654b6076d 100644 --- a/lisp/textmodes/rst.el +++ b/lisp/textmodes/rst.el | |||
| @@ -2444,7 +2444,7 @@ PREFER-ROMAN roman numbering is preferred over using letters." | |||
| 2444 | tab)) | 2444 | tab)) |
| 2445 | 2445 | ||
| 2446 | ;; FIXME: At least the continuation may be folded into | 2446 | ;; FIXME: At least the continuation may be folded into |
| 2447 | ;; `newline-and-indent`. However, this may not be wanted by everyone so | 2447 | ;; `newline-and-indent'. However, this may not be wanted by everyone so |
| 2448 | ;; it should be possible to switch this off. | 2448 | ;; it should be possible to switch this off. |
| 2449 | (defun rst-insert-list (&optional prefer-roman) | 2449 | (defun rst-insert-list (&optional prefer-roman) |
| 2450 | ;; testcover: ok. | 2450 | ;; testcover: ok. |
| @@ -2915,7 +2915,7 @@ error if there is no working link at the given position." | |||
| 2915 | (pop-to-buffer (marker-buffer mrkr)) | 2915 | (pop-to-buffer (marker-buffer mrkr)) |
| 2916 | (goto-char mrkr) | 2916 | (goto-char mrkr) |
| 2917 | ;; FIXME: Should be a customizable number of lines from beginning or end of | 2917 | ;; FIXME: Should be a customizable number of lines from beginning or end of |
| 2918 | ;; window just like the argument to `recenter`. It would be ideal if | 2918 | ;; window just like the argument to `recenter'. It would be ideal if |
| 2919 | ;; the adornment is always completely visible. | 2919 | ;; the adornment is always completely visible. |
| 2920 | (recenter 5))) | 2920 | (recenter 5))) |
| 2921 | 2921 | ||
| @@ -2995,7 +2995,7 @@ burying it." | |||
| 2995 | (define-derived-mode rst-toc-mode special-mode "ReST-TOC" | 2995 | (define-derived-mode rst-toc-mode special-mode "ReST-TOC" |
| 2996 | "Major mode for output from \\[rst-toc], the table-of-contents for the document. | 2996 | "Major mode for output from \\[rst-toc], the table-of-contents for the document. |
| 2997 | \\{rst-toc-mode-map}" | 2997 | \\{rst-toc-mode-map}" |
| 2998 | ;; FIXME: `revert-buffer-function` must be defined so `revert-buffer` works | 2998 | ;; FIXME: `revert-buffer-function' must be defined so `revert-buffer' works |
| 2999 | ;; as expected for a special mode. In particular the referred buffer | 2999 | ;; as expected for a special mode. In particular the referred buffer |
| 3000 | ;; needs to be rescanned and the TOC must be updated accordingly. | 3000 | ;; needs to be rescanned and the TOC must be updated accordingly. |
| 3001 | ;; FIXME: Should contain the name of the buffer this is the toc of. | 3001 | ;; FIXME: Should contain the name of the buffer this is the toc of. |
| @@ -3217,7 +3217,7 @@ Return a list of tabs sorted by likeliness to continue writing | |||
| 3217 | like `rst-line-tabs'. Nearer lines have generally a higher | 3217 | like `rst-line-tabs'. Nearer lines have generally a higher |
| 3218 | likeliness than farther lines. Return nil if no tab is found in | 3218 | likeliness than farther lines. Return nil if no tab is found in |
| 3219 | the text above." | 3219 | the text above." |
| 3220 | ;; FIXME: See test `indent-for-tab-command-BUGS`. | 3220 | ;; FIXME: See test `indent-for-tab-command-BUGS'. |
| 3221 | (save-excursion | 3221 | (save-excursion |
| 3222 | (goto-char pt) | 3222 | (goto-char pt) |
| 3223 | (let (leftmost ; Leftmost column found so far. | 3223 | (let (leftmost ; Leftmost column found so far. |