diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-22 20:26:40 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-22 20:26:40 +0200 |
commit | aebba085cba13ad1439462923ffa0520456f1aad (patch) | |
tree | 46a8edec2ec2d81da8c4031a79fc5ee08c016933 /lisp/progmodes/f90.el | |
parent | 7f06fe894cabf8f33e10386d6adb5d2ce9481a25 (diff) | |
download | emacs-aebba085cba13ad1439462923ffa0520456f1aad.tar.gz emacs-aebba085cba13ad1439462923ffa0520456f1aad.tar.bz2 emacs-aebba085cba13ad1439462923ffa0520456f1aad.zip |
; More minor stylistic fixes found by checkdoc
Diffstat (limited to 'lisp/progmodes/f90.el')
-rw-r--r-- | lisp/progmodes/f90.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 3f2c9b71485..f9e6101e7ab 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -65,8 +65,8 @@ ;; the variable f90-comment-region in every line of the region. ;; One common convention for free vs. fixed format is that free format -;; files have the ending .f90 or .f95 while fixed format files have -;; the ending .f. Emacs automatically loads Fortran files in the +;; files have the ending ".f90" or ".f95" while fixed format files have +;; the ending ".f". Emacs automatically loads Fortran files in the ;; appropriate mode based on extension. You can modify this by ;; adjusting the variable `auto-mode-alist'. ;; For example: @@ -984,7 +984,7 @@ Used in the F90 entry in `hs-special-modes-alist'.") ;; FIXME trivial to extend this to enum. Worth it? (defun f90-imenu-type-matcher () "Search backward for the start of a derived type. -Set subexpression 1 in the match-data to the name of the type." +Set subexpression 1 in the `match-data' to the name of the type." (let (found) (while (and (re-search-backward "^[ \t0-9]*type[ \t]*" nil t) (not (setq found |