aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-08-23 23:22:22 +0000
committerGlenn Morris2008-08-23 23:22:22 +0000
commitcd9b5d3e5194b2c2da7ed83ab8759a9503cb4ee8 (patch)
tree2e3a8902c5823e1063f63a444a926a39883cbb2b
parent50037b84a5cef74f37ada651a7911b1167269fb3 (diff)
downloademacs-cd9b5d3e5194b2c2da7ed83ab8759a9503cb4ee8.tar.gz
emacs-cd9b5d3e5194b2c2da7ed83ab8759a9503cb4ee8.zip
(fortran-tab-mode-string, fortran-comment-line-start)
(fortran-continuation-string): Doc fixes.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/fortran.el8
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bf4504122ae..909adf8fe09 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-08-23 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/fortran.el (fortran-tab-mode-string)
4 (fortran-comment-line-start, fortran-continuation-string): Doc fixes.
5
12008-08-23 Eli Zaretskii <eliz@gnu.org> 62008-08-23 Eli Zaretskii <eliz@gnu.org>
2 7
3 * term/pc-win.el (msdos-setup-keyboard) <msdos-setup-keyboard>: 8 * term/pc-win.el (msdos-setup-keyboard) <msdos-setup-keyboard>:
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index d5b551b78e2..bfc95479ced 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -96,7 +96,8 @@ with a character in column 6."
96 (interactive) 96 (interactive)
97 (describe-variable 97 (describe-variable
98 'fortran-tab-mode-string)))) 98 'fortran-tab-mode-string))))
99 "String to appear in mode line in TAB format buffers." 99 "String to appear in mode line in TAB format buffers.
100See Info node `(emacs)ForIndent Cont'."
100 :type 'string 101 :type 'string
101 :group 'fortran-indent) 102 :group 'fortran-indent)
102(put 'fortran-tab-mode-string 'risky-local-variable t) 103(put 'fortran-tab-mode-string 'risky-local-variable t)
@@ -147,7 +148,8 @@ nil forces comment lines not to be touched;
147 148
148(defcustom fortran-comment-line-start "C" 149(defcustom fortran-comment-line-start "C"
149 "Delimiter inserted to start new full-line comment. 150 "Delimiter inserted to start new full-line comment.
150You might want to change this to \"*\", for instance." 151You might want to change this to \"*\", for instance; or \"!\" to
152allow trailing comments on a line."
151 :version "21.1" 153 :version "21.1"
152 :type 'string 154 :type 'string
153 :group 'fortran-comment) 155 :group 'fortran-comment)
@@ -224,7 +226,7 @@ In fixed format continuation style, this character is inserted in
224column 6 by \\[fortran-split-line] to begin a continuation line. 226column 6 by \\[fortran-split-line] to begin a continuation line.
225Also, if \\[fortran-indent-line] finds this at the beginning of a 227Also, if \\[fortran-indent-line] finds this at the beginning of a
226line, it will convert the line into a continuation line of the 228line, it will convert the line into a continuation line of the
227appropriate style. Normally $." 229appropriate style. Normally \"$\"."
228 :type 'string 230 :type 'string
229 :group 'fortran) 231 :group 'fortran)
230(put 'fortran-continuation-string 'safe-local-variable 232(put 'fortran-continuation-string 'safe-local-variable