diff options
| author | Dave Love | 1998-11-18 19:19:09 +0000 |
|---|---|---|
| committer | Dave Love | 1998-11-18 19:19:09 +0000 |
| commit | 0a3a1c190a81e39b37fd9f23731f1cd9e4d7a84a (patch) | |
| tree | 5ed6cdef26431d31554158fa513a6368cbe4b122 | |
| parent | 3d6a1ce0344e2e09c15e343e8b4d8bb56c92cc4e (diff) | |
| download | emacs-0a3a1c190a81e39b37fd9f23731f1cd9e4d7a84a.tar.gz emacs-0a3a1c190a81e39b37fd9f23731f1cd9e4d7a84a.zip | |
(fortran-end-prog-re): Fix typo.
| -rw-r--r-- | lisp/progmodes/fortran.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index e8083455953..d32e547ba9d 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el | |||
| @@ -913,8 +913,8 @@ Auto-indent does not happen if a numeric ARG is used." | |||
| 913 | \\([ \t]*\\(\\sw\\|\\s_\\)+\\)?\\)?") | 913 | \\([ \t]*\\(\\sw\\|\\s_\\)+\\)?\\)?") |
| 914 | 914 | ||
| 915 | (defvar fortran-end-prog-re | 915 | (defvar fortran-end-prog-re |
| 916 | "Regexp possibly marking subprogram end." | 916 | (concat "^[ \t0-9]*" fortran-end-prog-re1) |
| 917 | (concat "^[ \t0-9]*" fortran-end-prog-re1)) | 917 | "Regexp possibly marking subprogram end.") |
| 918 | 918 | ||
| 919 | (defun fortran-check-end-prog-re () | 919 | (defun fortran-check-end-prog-re () |
| 920 | "Check a preliminary match against `fortran-end-prog-re'." | 920 | "Check a preliminary match against `fortran-end-prog-re'." |