Mercurial > emacs
comparison lisp/progmodes/f90.el @ 45379:eadb2403fb8a
(f90-change-keywords): Doc fix.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sun, 19 May 2002 23:22:50 +0000 |
parents | 31cf809b5bc2 |
children | 1c0762514eaa |
comparison
equal
deleted
inserted
replaced
45378:494cbdfb664f | 45379:eadb2403fb8a |
---|---|
1695 (f90-change-keywords 'downcase-word beg end)) | 1695 (f90-change-keywords 'downcase-word beg end)) |
1696 | 1696 |
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. |
1700 CHANGE-WORD should be one of 'upcase-word, 'downcase-word, capitalize-word." | 1700 CHANGE-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))) |
1704 (let ((keyword-re | 1704 (let ((keyword-re |
1705 (concat "\\(" | 1705 (concat "\\(" |