diff options
| author | Karl Heuer | 1996-01-05 22:21:28 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-05 22:21:28 +0000 |
| commit | a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0 (patch) | |
| tree | 9ca09d12c605ce9155e55ad82476c9a6d6ebedcd /lisp/textmodes | |
| parent | 60d0378e485ded218121a8b8d6ce582e47882fac (diff) | |
| download | emacs-a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0.tar.gz emacs-a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0.zip | |
Comment fixes.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/ispell.el | 6 | ||||
| -rw-r--r-- | lisp/textmodes/ooutline.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/outline.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/page-ext.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 8064b5e0582..7c71d1d53f8 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -1324,7 +1324,7 @@ Optional second argument contains the dictionary to use; the default is | |||
| 1324 | ;;; multiple lines. | 1324 | ;;; multiple lines. |
| 1325 | ;;; "ispell-filter-continue" is true when we have received only part of a | 1325 | ;;; "ispell-filter-continue" is true when we have received only part of a |
| 1326 | ;;; line as output from a generating function ("output" did not end with \n) | 1326 | ;;; line as output from a generating function ("output" did not end with \n) |
| 1327 | ;;; NOTE THAT THIS FUNCTION WILL FAIL IF THE PROCESS OUTPUT DOESNT END WITH \n! | 1327 | ;;; THIS FUNCTION WILL FAIL IF THE PROCESS OUTPUT DOESN'T END WITH \n! |
| 1328 | ;;; This is the case when a process dies or fails. The default behavior | 1328 | ;;; This is the case when a process dies or fails. The default behavior |
| 1329 | ;;; in this case treats the next input received as fresh input. | 1329 | ;;; in this case treats the next input received as fresh input. |
| 1330 | 1330 | ||
| @@ -1370,7 +1370,7 @@ otherwise it is displayed normally." | |||
| 1370 | (inhibit-quit t) ; inhibit interrupt processing here. | 1370 | (inhibit-quit t) ; inhibit interrupt processing here. |
| 1371 | (buffer-undo-list t)) ; don't clutter the undo list. | 1371 | (buffer-undo-list t)) ; don't clutter the undo list. |
| 1372 | (delete-region start end) | 1372 | (delete-region start end) |
| 1373 | (insert-char ? (- end start)) ; mimimize amount of redisplay | 1373 | (insert-char ? (- end start)) ; minimize amount of redisplay |
| 1374 | (sit-for 0) ; update display | 1374 | (sit-for 0) ; update display |
| 1375 | (if highlight (setq inverse-video (not inverse-video))) ; toggle video | 1375 | (if highlight (setq inverse-video (not inverse-video))) ; toggle video |
| 1376 | (delete-region start end) ; delete whitespace | 1376 | (delete-region start end) ; delete whitespace |
| @@ -2200,7 +2200,7 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 2200 | (point)))) | 2200 | (point)))) |
| 2201 | (end (or (and end-c end-fwd (min end-c end-fwd)) | 2201 | (end (or (and end-c end-fwd (min end-c end-fwd)) |
| 2202 | end-c end-fwd | 2202 | end-c end-fwd |
| 2203 | ;; defalut to limit of text. | 2203 | ;; default to limit of text. |
| 2204 | (marker-position limit)))) | 2204 | (marker-position limit)))) |
| 2205 | (goto-char start) | 2205 | (goto-char start) |
| 2206 | (ispell-region start end) | 2206 | (ispell-region start end) |
diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el index 6046de427c4..7e504904333 100644 --- a/lisp/textmodes/ooutline.el +++ b/lisp/textmodes/ooutline.el | |||
| @@ -145,7 +145,7 @@ in the file it applies to.") | |||
| 145 | (3 . font-lock-comment-face)))) | 145 | (3 . font-lock-comment-face)))) |
| 146 | font-lock-variable-name-face)) | 146 | font-lock-variable-name-face)) |
| 147 | nil t)) | 147 | nil t)) |
| 148 | ;; Highight citations of the form [1] and [Mar94]. | 148 | ;; Highlight citations of the form [1] and [Mar94]. |
| 149 | ("\\[\\([A-Z][A-Za-z]+\\)*[0-9]+\\]" . font-lock-type-face)) | 149 | ("\\[\\([A-Z][A-Za-z]+\\)*[0-9]+\\]" . font-lock-type-face)) |
| 150 | "Additional expressions to highlight in Outline mode.") | 150 | "Additional expressions to highlight in Outline mode.") |
| 151 | 151 | ||
diff --git a/lisp/textmodes/outline.el b/lisp/textmodes/outline.el index b872557d230..b36e3c76163 100644 --- a/lisp/textmodes/outline.el +++ b/lisp/textmodes/outline.el | |||
| @@ -145,7 +145,7 @@ in the file it applies to.") | |||
| 145 | (3 . font-lock-comment-face)))) | 145 | (3 . font-lock-comment-face)))) |
| 146 | font-lock-variable-name-face)) | 146 | font-lock-variable-name-face)) |
| 147 | nil t)) | 147 | nil t)) |
| 148 | ;; Highight citations of the form [1] and [Mar94]. | 148 | ;; Highlight citations of the form [1] and [Mar94]. |
| 149 | ("\\[\\([A-Z][A-Za-z]+\\)*[0-9]+\\]" . font-lock-type-face)) | 149 | ("\\[\\([A-Z][A-Za-z]+\\)*[0-9]+\\]" . font-lock-type-face)) |
| 150 | "Additional expressions to highlight in Outline mode.") | 150 | "Additional expressions to highlight in Outline mode.") |
| 151 | 151 | ||
diff --git a/lisp/textmodes/page-ext.el b/lisp/textmodes/page-ext.el index f00146a08f8..2a5ab9ef4a5 100644 --- a/lisp/textmodes/page-ext.el +++ b/lisp/textmodes/page-ext.el | |||
| @@ -161,7 +161,7 @@ | |||
| 161 | 161 | ||
| 162 | ; You may use either the `C-x C-p d' (pages-directory-for-addresses) | 162 | ; You may use either the `C-x C-p d' (pages-directory-for-addresses) |
| 163 | ; or the `C-x C-p C-d' (pages-directory) command to construct and | 163 | ; or the `C-x C-p C-d' (pages-directory) command to construct and |
| 164 | ; dislay a directory of all the heading lines. | 164 | ; display a directory of all the heading lines. |
| 165 | 165 | ||
| 166 | ; In the directory, you may position the cursor over a heading line | 166 | ; In the directory, you may position the cursor over a heading line |
| 167 | ; and type `C-c C-c' (pages-directory-goto) to go to the entry to | 167 | ; and type `C-c C-c' (pages-directory-goto) to go to the entry to |
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 497c4d784bc..e4b0edf1b31 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -2893,7 +2893,7 @@ The command `@value{foo}' expands to the value." | |||
| 2893 | ;; In the original version, include files were ignored by Info but | 2893 | ;; In the original version, include files were ignored by Info but |
| 2894 | ;; incorporated in to the printed manual. To make references to the | 2894 | ;; incorporated in to the printed manual. To make references to the |
| 2895 | ;; included file, the Texinfo source file has to refer to the included | 2895 | ;; included file, the Texinfo source file has to refer to the included |
| 2896 | ;; files using the `(filename)nodename' format for refering to other | 2896 | ;; files using the `(filename)nodename' format for referring to other |
| 2897 | ;; Info files. Also, the included files had to be formatted on their | 2897 | ;; Info files. Also, the included files had to be formatted on their |
| 2898 | ;; own. It was just like they were another file. | 2898 | ;; own. It was just like they were another file. |
| 2899 | 2899 | ||