diff options
| author | Christopher Zaborsky | 1992-10-25 19:44:06 +0000 |
|---|---|---|
| committer | Christopher Zaborsky | 1992-10-25 19:44:06 +0000 |
| commit | fe668515823c6d9408bbc5015ef5c8d1d5af8597 (patch) | |
| tree | 24563d418bf0893610bd10f1b640da941b0d8c8c | |
| parent | accd90bd673f69a656918497a1a1c0706b0c9e54 (diff) | |
| download | emacs-fe668515823c6d9408bbc5015ef5c8d1d5af8597.tar.gz emacs-fe668515823c6d9408bbc5015ef5c8d1d5af8597.zip | |
Doc fix.
| -rw-r--r-- | lisp/finder.el | 2 | ||||
| -rw-r--r-- | lisp/frame.el | 4 | ||||
| -rw-r--r-- | lisp/gnus.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/fortran.el | 19 |
4 files changed, 13 insertions, 14 deletions
diff --git a/lisp/finder.el b/lisp/finder.el index ee58902ff44..0613e8d2cf8 100644 --- a/lisp/finder.el +++ b/lisp/finder.el | |||
| @@ -77,7 +77,7 @@ | |||
| 77 | (defun finder-compile-keywords (&rest dirs) | 77 | (defun finder-compile-keywords (&rest dirs) |
| 78 | "Regenerate the keywords association list into the file finder-inf.el. | 78 | "Regenerate the keywords association list into the file finder-inf.el. |
| 79 | Optional arguments are a list of Emacs Lisp directories to compile from; no | 79 | Optional arguments are a list of Emacs Lisp directories to compile from; no |
| 80 | arguments compiles from load-path." | 80 | arguments compiles from `load-path'." |
| 81 | (save-excursion | 81 | (save-excursion |
| 82 | (find-file "finder-inf.el") | 82 | (find-file "finder-inf.el") |
| 83 | (erase-buffer) | 83 | (erase-buffer) |
diff --git a/lisp/frame.el b/lisp/frame.el index 36d4898f35b..d679f136ead 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -304,7 +304,7 @@ If FRAME is omitted, describe the currently selected frame." | |||
| 304 | Optional second arg non-nil means that redisplay should use COLS columns\n\ | 304 | Optional second arg non-nil means that redisplay should use COLS columns\n\ |
| 305 | but that the idea of the actual width of the frame should not be changed.\n\ | 305 | but that the idea of the actual width of the frame should not be changed.\n\ |
| 306 | This function is provided only for compatibility with Emacs 18; new code\n\ | 306 | This function is provided only for compatibility with Emacs 18; new code\n\ |
| 307 | should use set-frame-width instead." | 307 | should use `set-frame-width instead'." |
| 308 | (set-frame-width (selected-frame) cols pretend)) | 308 | (set-frame-width (selected-frame) cols pretend)) |
| 309 | 309 | ||
| 310 | (defun set-screen-height (lines &optional pretend) | 310 | (defun set-screen-height (lines &optional pretend) |
| @@ -312,7 +312,7 @@ should use set-frame-width instead." | |||
| 312 | Optional second arg non-nil means that redisplay should use LINES lines\n\ | 312 | Optional second arg non-nil means that redisplay should use LINES lines\n\ |
| 313 | but that the idea of the actual height of the screen should not be changed.\n\ | 313 | but that the idea of the actual height of the screen should not be changed.\n\ |
| 314 | This function is provided only for compatibility with Emacs 18; new code\n\ | 314 | This function is provided only for compatibility with Emacs 18; new code\n\ |
| 315 | should use set-frame-width instead." | 315 | should use `set-frame-width' instead." |
| 316 | (set-frame-height (selected-frame) lines pretend)) | 316 | (set-frame-height (selected-frame) lines pretend)) |
| 317 | 317 | ||
| 318 | (make-obsolete 'screen-height 'frame-height) | 318 | (make-obsolete 'screen-height 'frame-height) |
diff --git a/lisp/gnus.el b/lisp/gnus.el index a0e70095b71..0c4d94df5aa 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el | |||
| @@ -4961,7 +4961,7 @@ that it was marked as read once." | |||
| 4961 | "Configure GNUS windows according to the next ACTION. | 4961 | "Configure GNUS windows according to the next ACTION. |
| 4962 | The ACTION is either a symbol, such as `SelectNewsgroup', or a | 4962 | The ACTION is either a symbol, such as `SelectNewsgroup', or a |
| 4963 | configuration list such as `(1 1 2)'. If ACTION is not a list, | 4963 | configuration list such as `(1 1 2)'. If ACTION is not a list, |
| 4964 | configuration list is got from the variable gnus-window-configuration." | 4964 | configuration list is got from the variable `gnus-window-configuration'." |
| 4965 | (let* ((windows | 4965 | (let* ((windows |
| 4966 | (if (listp action) | 4966 | (if (listp action) |
| 4967 | action (car (cdr (assq action gnus-window-configuration))))) | 4967 | action (car (cdr (assq action gnus-window-configuration))))) |
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index 37bfff498e0..fafb49dcddb 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el | |||
| @@ -481,7 +481,7 @@ Any other key combination is executed normally." | |||
| 481 | 481 | ||
| 482 | (defun fortran-column-ruler () | 482 | (defun fortran-column-ruler () |
| 483 | "Inserts a column ruler momentarily above current line, till next keystroke. | 483 | "Inserts a column ruler momentarily above current line, till next keystroke. |
| 484 | The ruler is defined by the value of fortran-column-ruler. | 484 | The ruler is defined by the value of `fortran-column-ruler'. |
| 485 | The key typed is executed unless it is SPC." | 485 | The key typed is executed unless it is SPC." |
| 486 | (interactive) | 486 | (interactive) |
| 487 | (momentary-string-display | 487 | (momentary-string-display |
| @@ -490,7 +490,7 @@ The key typed is executed unless it is SPC." | |||
| 490 | 490 | ||
| 491 | (defun fortran-window-create () | 491 | (defun fortran-window-create () |
| 492 | "Makes the window 72 columns wide. | 492 | "Makes the window 72 columns wide. |
| 493 | See also fortran-window-create-momentarily." | 493 | See also `fortran-window-create-momentarily'." |
| 494 | (interactive) | 494 | (interactive) |
| 495 | (condition-case error | 495 | (condition-case error |
| 496 | (progn | 496 | (progn |
| @@ -508,7 +508,7 @@ See also fortran-window-create-momentarily." | |||
| 508 | (defun fortran-window-create-momentarily (&optional arg) | 508 | (defun fortran-window-create-momentarily (&optional arg) |
| 509 | "Momentarily makes the window 72 columns wide. | 509 | "Momentarily makes the window 72 columns wide. |
| 510 | Optional ARG non-nil and non-unity disables the momentary feature. | 510 | Optional ARG non-nil and non-unity disables the momentary feature. |
| 511 | See also fortran-window-create." | 511 | See also `fortran-window-create'." |
| 512 | (interactive "p") | 512 | (interactive "p") |
| 513 | (if (or (not arg) | 513 | (if (or (not arg) |
| 514 | (= arg 1)) | 514 | (= arg 1)) |
| @@ -937,8 +937,8 @@ Otherwise return a nil." | |||
| 937 | 937 | ||
| 938 | (defun fortran-analyze-file-format () | 938 | (defun fortran-analyze-file-format () |
| 939 | "Return 0 if Fixed format is used, 1 if Tab formatting is used. | 939 | "Return 0 if Fixed format is used, 1 if Tab formatting is used. |
| 940 | Use fortran-tab-mode-default if no non-comment statements are found in the | 940 | Use `fortran-tab-mode-default' if no non-comment statements are found in the |
| 941 | file before the end or the first fortran-analyze-depth lines." | 941 | file before the end or the first `fortran-analyze-depth' lines." |
| 942 | (save-excursion | 942 | (save-excursion |
| 943 | (goto-char (point-min)) | 943 | (goto-char (point-min)) |
| 944 | (setq i 0) | 944 | (setq i 0) |
| @@ -956,11 +956,10 @@ file before the end or the first fortran-analyze-depth lines." | |||
| 956 | (t 0)))) | 956 | (t 0)))) |
| 957 | 957 | ||
| 958 | (defun fortran-tab-mode (arg) | 958 | (defun fortran-tab-mode (arg) |
| 959 | "Toggle fortran-tab-mode which indicates style of continuation lines. | 959 | "Toggle `fortran-tab-mode' which indicates style of continuation lines. |
| 960 | With no argument, toggle on/off the tabbing mode of continuation lines. | 960 | With no argument, toggle on/off the tabbing mode of continuation lines. |
| 961 | If argument is a positive number, or non-nil if not a number, fortran-tab-mode | 961 | If argument is a positive number, or non-nil if not a number, |
| 962 | is turned on. Otherwise | 962 | `fortran-tab-mode' is turned on. Otherwise `fortran-tab-mode' is false" |
| 963 | If `fortran-tab-mode' is false" | ||
| 964 | (interactive "P") | 963 | (interactive "P") |
| 965 | (setq fortran-tab-mode | 964 | (setq fortran-tab-mode |
| 966 | (if (null arg) (not fortran-tab-mode) | 965 | (if (null arg) (not fortran-tab-mode) |
| @@ -987,7 +986,7 @@ Use the command fortran-tab-mode to toggle between this and fixed format style." | |||
| 987 | 986 | ||
| 988 | (defun fortran-setup-fixed-format-style () | 987 | (defun fortran-setup-fixed-format-style () |
| 989 | "Set up fortran mode to use the column 6 mode of continuation lines. | 988 | "Set up fortran mode to use the column 6 mode of continuation lines. |
| 990 | Use the command fortran-tab-mode to toggle between this and tab | 989 | Use the command `fortran-tab-mode' to toggle between this and tab |
| 991 | character format style." | 990 | character format style." |
| 992 | (setq fortran-comment-line-column 6) | 991 | (setq fortran-comment-line-column 6) |
| 993 | (setq fortran-minimum-statement-indent 6) | 992 | (setq fortran-minimum-statement-indent 6) |