diff options
| author | Glenn Morris | 2003-04-16 13:50:40 +0000 |
|---|---|---|
| committer | Glenn Morris | 2003-04-16 13:50:40 +0000 |
| commit | 0db701f029fd4cb6db4305bc8e2182ae1329ff6e (patch) | |
| tree | f8cfa5c2dd37d5205a2153fe0dd1c0ea4d366cf4 | |
| parent | ef5a4730db25ca5cf34c476799b44e11b8e526f1 (diff) | |
| download | emacs-0db701f029fd4cb6db4305bc8e2182ae1329ff6e.tar.gz emacs-0db701f029fd4cb6db4305bc8e2182ae1329ff6e.zip | |
(f90-looking-at-do, f90-find-breakpoint): Fix previous change.
| -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 47e200ee357..b0dbf9dcaea 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el | |||
| @@ -855,7 +855,7 @@ For example, \"!\" or \"!!\"." | |||
| 855 | "Return (\"do\" NAME) if a do statement starts after point. | 855 | "Return (\"do\" NAME) if a do statement starts after point. |
| 856 | NAME is nil if the statement has no label." | 856 | NAME is nil if the statement has no label." |
| 857 | (if (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\\(do\\)\\>") | 857 | (if (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\\(do\\)\\>") |
| 858 | (list (match-string 3) (match-string 2))) | 858 | (list (match-string 3) (match-string 2)))) |
| 859 | 859 | ||
| 860 | (defsubst f90-looking-at-select-case () | 860 | (defsubst f90-looking-at-select-case () |
| 861 | "Return (\"select\" NAME) if a select-case statement starts after point. | 861 | "Return (\"select\" NAME) if a select-case statement starts after point. |
| @@ -1519,7 +1519,7 @@ is non-nil, call `f90-update-line' after inserting the continuation marker." | |||
| 1519 | (forward-char (if (looking-at f90-no-break-re) 2 1)) | 1519 | (forward-char (if (looking-at f90-no-break-re) 2 1)) |
| 1520 | (backward-char) | 1520 | (backward-char) |
| 1521 | (or (looking-at f90-no-break-re) | 1521 | (or (looking-at f90-no-break-re) |
| 1522 | (forward-char))))) | 1522 | (forward-char)))) |
| 1523 | 1523 | ||
| 1524 | (defun f90-do-auto-fill () | 1524 | (defun f90-do-auto-fill () |
| 1525 | "Break line if non-white characters beyond `fill-column'. | 1525 | "Break line if non-white characters beyond `fill-column'. |