diff options
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/f90.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index b3661bfe3f1..49e072c65bd 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el | |||
| @@ -1880,8 +1880,8 @@ after indenting." | |||
| 1880 | ;; FIXME This means f90-calculate-indent gives different answers | 1880 | ;; FIXME This means f90-calculate-indent gives different answers |
| 1881 | ;; for comments and preprocessor lines to this function. | 1881 | ;; for comments and preprocessor lines to this function. |
| 1882 | ;; Better to make f90-calculate-indent return the correct answer? | 1882 | ;; Better to make f90-calculate-indent return the correct answer? |
| 1883 | (cond ((looking-at "!") (setq indent (f90-comment-indent))) | 1883 | (cond ((= (following-char) ?!) (setq indent (f90-comment-indent))) |
| 1884 | ((looking-at "#") (setq indent 0)) | 1884 | ((= (following-char) ?#) (setq indent 0)) |
| 1885 | (t | 1885 | (t |
| 1886 | (and f90-smart-end (looking-at "end") | 1886 | (and f90-smart-end (looking-at "end") |
| 1887 | (f90-match-end)) | 1887 | (f90-match-end)) |