diff options
| author | Richard M. Stallman | 2001-12-07 03:33:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-07 03:33:39 +0000 |
| commit | f00d330457b37733ab98886bf3354c9145ab1fbb (patch) | |
| tree | b3ad49ac80b9eeb47b576ac904a38a4510820a94 | |
| parent | 59b59892170eb1075c97d6b160ef476a8b4a5692 (diff) | |
| download | emacs-f00d330457b37733ab98886bf3354c9145ab1fbb.tar.gz emacs-f00d330457b37733ab98886bf3354c9145ab1fbb.zip | |
(f90-break-line): Use (newline 1) to insert newlines.
(bug-f90-mode): Variable deleted.
| -rw-r--r-- | lisp/progmodes/f90.el | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 6dbd0d2c334..1ad6ffeef20 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el | |||
| @@ -143,9 +143,6 @@ | |||
| 143 | 143 | ||
| 144 | ;;; Code: | 144 | ;;; Code: |
| 145 | 145 | ||
| 146 | (defconst bug-f90-mode "T.Einarsson@clab.ericsson.se" | ||
| 147 | "Address of mailing list for F90 mode bugs.") | ||
| 148 | |||
| 149 | ;; User options | 146 | ;; User options |
| 150 | 147 | ||
| 151 | (defgroup f90 nil | 148 | (defgroup f90 nil |
| @@ -889,8 +886,6 @@ with no args, if that value is non-nil." | |||
| 889 | (set (make-local-variable 'add-log-current-defun-function) | 886 | (set (make-local-variable 'add-log-current-defun-function) |
| 890 | #'f90-current-defun) | 887 | #'f90-current-defun) |
| 891 | (run-hooks 'f90-mode-hook) | 888 | (run-hooks 'f90-mode-hook) |
| 892 | ;; (if f90-startup-message | ||
| 893 | ;; (message "Emacs F90 mode; please report bugs to %s" bug-f90-mode)) | ||
| 894 | (setq f90-startup-message nil)) | 889 | (setq f90-startup-message nil)) |
| 895 | 890 | ||
| 896 | ;; inline-functions | 891 | ;; inline-functions |
| @@ -1472,14 +1467,14 @@ If run in the middle of a line, the line is not broken." | |||
| 1472 | (interactive) | 1467 | (interactive) |
| 1473 | (let (ctype) | 1468 | (let (ctype) |
| 1474 | (cond ((f90-in-string) | 1469 | (cond ((f90-in-string) |
| 1475 | (insert "&") (newline) (insert "&")) | 1470 | (insert "&") (newline 1) (insert "&")) |
| 1476 | ((f90-in-comment) | 1471 | ((f90-in-comment) |
| 1477 | (setq ctype (f90-get-present-comment-type)) | 1472 | (setq ctype (f90-get-present-comment-type)) |
| 1478 | (newline) | 1473 | (newline 1) |
| 1479 | (insert ctype)) | 1474 | (insert ctype)) |
| 1480 | (t (insert "&") | 1475 | (t (insert "&") |
| 1481 | (if (not no-update) (f90-update-line)) | 1476 | (if (not no-update) (f90-update-line)) |
| 1482 | (newline) | 1477 | (newline 1) |
| 1483 | (if f90-beginning-ampersand (insert "&"))))) | 1478 | (if f90-beginning-ampersand (insert "&"))))) |
| 1484 | (f90-indent-line)) | 1479 | (f90-indent-line)) |
| 1485 | 1480 | ||