aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/progmodes/f90.el2
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 83239ea6903..463c72f3d5f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -6,6 +6,7 @@
6 (f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case) 6 (f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
7 (f90-looking-at-if-then): Remove lets. 7 (f90-looking-at-if-then): Remove lets.
8 (f90-looking-at-where-or-forall): Handle if split over lines. 8 (f90-looking-at-where-or-forall): Handle if split over lines.
9 (f90-change-keywords): Doc fix.
9 10
102002-05-19 Richard M. Stallman <rms@gnu.org> 112002-05-19 Richard M. Stallman <rms@gnu.org>
11 12
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index 3f8478c19f0..e321dfce8d8 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -1697,7 +1697,7 @@ Any other key combination is executed normally."
1697;; Change the keywords according to argument. 1697;; Change the keywords according to argument.
1698(defun f90-change-keywords (change-word &optional beg end) 1698(defun f90-change-keywords (change-word &optional beg end)
1699 "Change the case of F90 keywords in the region (if specified) or buffer. 1699 "Change the case of F90 keywords in the region (if specified) or buffer.
1700CHANGE-WORD should be one of 'upcase-word, 'downcase-word, capitalize-word." 1700CHANGE-WORD should be one of 'upcase-word, 'downcase-word, 'capitalize-word."
1701 (save-excursion 1701 (save-excursion
1702 (setq beg (or beg (point-min)) 1702 (setq beg (or beg (point-min))
1703 end (or end (point-max))) 1703 end (or end (point-max)))