aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)