diff options
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/fortran.el | 4 | ||||
-rw-r--r-- | lisp/progmodes/hideif.el | 7 | ||||
-rw-r--r-- | lisp/progmodes/icon.el | 3 |
3 files changed, 10 insertions, 4 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index 6ed3645ec9e..aad14d232c2 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el @@ -1,4 +1,5 @@ -;;; Fortran mode for GNU Emacs (version 1.28.3, July 15, 1991) +;;; fortran.el --- Fortran mode for GNU Emacs (version 1.28.3, July 15, 1991) + ;;; Copyright (c) 1991 Free Software Foundation, Inc. ;;; Written by Michael D. Prange (prange@erl.mit.edu) ;;; Maintained (as of version 1.28) by Stephen A. Wood (saw@hallc1.cebaf.gov) @@ -995,3 +996,4 @@ character format style." (provide 'fortran) +;;; fortran.el ends here diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el index 4a1b9897808..a43b91ce091 100644 --- a/lisp/progmodes/hideif.el +++ b/lisp/progmodes/hideif.el @@ -1,5 +1,5 @@ -;;; hide-ifdef-mode.el Hides selected code within ifdef. -;;; +;;; hide-ifdef-mode.el --- ides selected code within ifdef. + ;;; Copyright (C) 1988 Brian Marick and Daniel LaLiberte ;;; Written by Brian Marick, at Gould, Computer Systems Division, Urbana IL. ;;; Extensively modified by Daniel LaLiberte (while at Gould). @@ -1004,4 +1004,5 @@ Turn off hiding by calling show-ifdef." (error "No define list for %s" name)) (if hide-ifdef-hiding (hide-ifdefs)))) -;===%%SF%% exports (End) === +;;; hideif.el ends here + diff --git a/lisp/progmodes/icon.el b/lisp/progmodes/icon.el index c381f812105..cab251427ba 100644 --- a/lisp/progmodes/icon.el +++ b/lisp/progmodes/icon.el @@ -1,3 +1,5 @@ +;;; icon.el --- mode for editing Icon code + ;; Note: use ;; (autoload 'icon-mode "icon" nil t) ;; (setq auto-mode-alist (cons '("\\.icn$" . icon-mode) auto-mode-alist)) @@ -547,3 +549,4 @@ Returns nil if line starts inside a string, t if in a comment." (if (re-search-forward comment-start-skip (save-excursion (end-of-line) (point)) t) (progn (indent-for-comment) (beginning-of-line)))))))))) +;;; icon.el ends here |