aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/f90.el2
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7bbc41aff63..78034242ba4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-02-19 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
4 property. (Bug#5593)
5
12010-02-18 Sam Steingold <sds@gnu.org> 62010-02-18 Sam Steingold <sds@gnu.org>
2 7
3 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing. 8 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index 21273359486..0a3c96d7894 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -1356,6 +1356,8 @@ if all else fails."
1356 (if auto-fill-function (f90-do-auto-fill) ; also updates line 1356 (if auto-fill-function (f90-do-auto-fill) ; also updates line
1357 (f90-update-line))) 1357 (f90-update-line)))
1358 1358
1359;; Behave like self-insert-command for delete-selection-mode (bug#5593).
1360(put 'f90-electric-insert 'delete-selection t)
1359 1361
1360(defun f90-get-correct-indent () 1362(defun f90-get-correct-indent ()
1361 "Get correct indent for a line starting with line number. 1363 "Get correct indent for a line starting with line number.