changeset 1475:2596132752ff

Doc fix.
author Christopher Zaborsky <rogue@erratum.com>
date Sun, 25 Oct 1992 19:44:06 +0000
parents 341c17b20f2a
children 10c59683079d
files lisp/=gnus.el lisp/finder.el lisp/frame.el lisp/progmodes/fortran.el
diffstat 4 files changed, 13 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/=gnus.el	Sat Oct 24 20:07:08 1992 +0000
+++ b/lisp/=gnus.el	Sun Oct 25 19:44:06 1992 +0000
@@ -4961,7 +4961,7 @@
   "Configure GNUS windows according to the next ACTION.
 The ACTION is either a symbol, such as `SelectNewsgroup', or a
 configuration list such as `(1 1 2)'.  If ACTION is not a list,
-configuration list is got from the variable gnus-window-configuration."
+configuration list is got from the variable `gnus-window-configuration'."
   (let* ((windows
 	  (if (listp action)
 	      action (car (cdr (assq action gnus-window-configuration)))))
--- a/lisp/finder.el	Sat Oct 24 20:07:08 1992 +0000
+++ b/lisp/finder.el	Sun Oct 25 19:44:06 1992 +0000
@@ -77,7 +77,7 @@
 (defun finder-compile-keywords (&rest dirs)
   "Regenerate the keywords association list into the file finder-inf.el.
 Optional arguments are a list of Emacs Lisp directories to compile from; no
-arguments compiles from load-path."
+arguments compiles from `load-path'."
   (save-excursion
     (find-file "finder-inf.el")
     (erase-buffer)
--- a/lisp/frame.el	Sat Oct 24 20:07:08 1992 +0000
+++ b/lisp/frame.el	Sun Oct 25 19:44:06 1992 +0000
@@ -304,7 +304,7 @@
 Optional second arg non-nil means that redisplay should use COLS columns\n\
 but that the idea of the actual width of the frame should not be changed.\n\
 This function is provided only for compatibility with Emacs 18; new code\n\
-should use set-frame-width instead."
+should use `set-frame-width instead'."
   (set-frame-width (selected-frame) cols pretend))
 
 (defun set-screen-height (lines &optional pretend)
@@ -312,7 +312,7 @@
 Optional second arg non-nil means that redisplay should use LINES lines\n\
 but that the idea of the actual height of the screen should not be changed.\n\
 This function is provided only for compatibility with Emacs 18; new code\n\
-should use set-frame-width instead."
+should use `set-frame-width' instead."
   (set-frame-height (selected-frame) lines pretend))
 
 (make-obsolete 'screen-height 'frame-height)
--- a/lisp/progmodes/fortran.el	Sat Oct 24 20:07:08 1992 +0000
+++ b/lisp/progmodes/fortran.el	Sun Oct 25 19:44:06 1992 +0000
@@ -481,7 +481,7 @@
 
 (defun fortran-column-ruler ()
   "Inserts a column ruler momentarily above current line, till next keystroke.
-The ruler is defined by the value of fortran-column-ruler.
+The ruler is defined by the value of `fortran-column-ruler'.
 The key typed is executed unless it is SPC."
   (interactive)
   (momentary-string-display 
@@ -490,7 +490,7 @@
 
 (defun fortran-window-create ()
   "Makes the window 72 columns wide.
-See also fortran-window-create-momentarily."
+See also `fortran-window-create-momentarily'."
   (interactive)
   (condition-case error
       (progn
@@ -508,7 +508,7 @@
 (defun fortran-window-create-momentarily (&optional arg)
   "Momentarily makes the window 72 columns wide.
 Optional ARG non-nil and non-unity disables the momentary feature.
-See also fortran-window-create."
+See also `fortran-window-create'."
   (interactive "p")
   (if (or (not arg)
 	  (= arg 1))
@@ -937,8 +937,8 @@
 
 (defun fortran-analyze-file-format ()
   "Return 0 if Fixed format is used, 1 if Tab formatting is used.
-Use fortran-tab-mode-default if no non-comment statements are found in the
-file before the end or the first fortran-analyze-depth lines."
+Use `fortran-tab-mode-default' if no non-comment statements are found in the
+file before the end or the first `fortran-analyze-depth' lines."
   (save-excursion
     (goto-char (point-min))
     (setq i 0)
@@ -956,11 +956,10 @@
      (t 0))))
 
 (defun fortran-tab-mode (arg)
-  "Toggle fortran-tab-mode which indicates style of continuation lines.
+  "Toggle `fortran-tab-mode' which indicates style of continuation lines.
 With no argument, toggle on/off the tabbing mode of continuation lines.
-If argument is a positive number, or non-nil if not a number, fortran-tab-mode
-is turned on.  Otherwise 
-If `fortran-tab-mode' is false"
+If argument is a positive number, or non-nil if not a number,
+`fortran-tab-mode' is turned on.  Otherwise `fortran-tab-mode' is false"
   (interactive "P")
   (setq fortran-tab-mode
 	(if (null arg) (not fortran-tab-mode)
@@ -987,7 +986,7 @@
 
 (defun fortran-setup-fixed-format-style ()
   "Set up fortran mode to use the column 6 mode of continuation lines.
-Use the command fortran-tab-mode to toggle between this and tab
+Use the command `fortran-tab-mode' to toggle between this and tab
 character format style."
   (setq fortran-comment-line-column 6)
   (setq fortran-minimum-statement-indent 6)