aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-07-05 17:16:01 -0700
committerGlenn Morris2015-07-05 17:16:01 -0700
commit23818bba0d52ea7513cecfcf7b5a70e67ff050f2 (patch)
tree83e10f81f9b3ba7e331a8a1ff5670e5fdf1ff1c4
parentcbeeab2eab5d53f0fba452d4790d7a58071605e2 (diff)
downloademacs-23818bba0d52ea7513cecfcf7b5a70e67ff050f2.tar.gz
emacs-23818bba0d52ea7513cecfcf7b5a70e67ff050f2.zip
* lisp/progmodes/fortran.el (fortran-line-length): Doc fix.
-rw-r--r--lisp/progmodes/fortran.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index c0d4454c3ec..65aa7454008 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -916,12 +916,12 @@ with no args, if that value is non-nil."
916 916
917(defun fortran-line-length (nchars &optional global) 917(defun fortran-line-length (nchars &optional global)
918 "Set the length of fixed-form Fortran lines to NCHARS. 918 "Set the length of fixed-form Fortran lines to NCHARS.
919This normally only affects the current buffer, which must be in 919By default this only affects the current buffer, which must be in
920Fortran mode. If the optional argument GLOBAL is non-nil, it 920Fortran mode. If the optional argument GLOBAL is non-nil, it affects
921affects all Fortran buffers, and also the default. 921all Fortran buffers, and also the default. The default value of NCHARS
922If a numeric prefix argument is specified, it will be used as NCHARS, 922is the current column. A numeric prefix argument specifies a value to
923otherwise is a non-numeric prefix arg is specified, the length will be 923use instead of the current column. A non-numeric prefix argument prompts
924provided via the minibuffer, and otherwise the current column is used." 924for the value to use."
925 (interactive 925 (interactive
926 (list (cond 926 (list (cond
927 ((numberp current-prefix-arg) current-prefix-arg) 927 ((numberp current-prefix-arg) current-prefix-arg)