diff options
| -rw-r--r-- | lisp/progmodes/fortran.el | 12 |
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. |
| 919 | This normally only affects the current buffer, which must be in | 919 | By default this only affects the current buffer, which must be in |
| 920 | Fortran mode. If the optional argument GLOBAL is non-nil, it | 920 | Fortran mode. If the optional argument GLOBAL is non-nil, it affects |
| 921 | affects all Fortran buffers, and also the default. | 921 | all Fortran buffers, and also the default. The default value of NCHARS |
| 922 | If a numeric prefix argument is specified, it will be used as NCHARS, | 922 | is the current column. A numeric prefix argument specifies a value to |
| 923 | otherwise is a non-numeric prefix arg is specified, the length will be | 923 | use instead of the current column. A non-numeric prefix argument prompts |
| 924 | provided via the minibuffer, and otherwise the current column is used." | 924 | for 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) |