summaryrefslogtreecommitdiff
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 22:12:04 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 22:12:04 +0000
commit6594deb0dcec8f1a663fc47b0588a7b4c935a6c5 (patch)
tree29925fd14277477ef3fa88270c19785985926c04 /lisp/progmodes
parentc88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d (diff)
downloademacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/modula2.el5
-rw-r--r--lisp/progmodes/prolog.el5
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el
index 24f5225260a..19c7249b40a 100644
--- a/lisp/progmodes/modula2.el
+++ b/lisp/progmodes/modula2.el
@@ -1,4 +1,5 @@
-; Modula-2 editing support package
+;;; modula2.el --- Modula-2 editing support package
+
; Author Mick Jordan
; amended Peter Robinson
; ported to GNU Michael Schmidt
@@ -437,3 +438,5 @@ FROM SysStreams IMPORT sysIn, sysOut, sysErr;
((string-equal (substring (buffer-name) -3) ".md")
(find-file-other-window
(concat (substring (buffer-name) 0 -3) ".mi")))))
+
+;;; modula2.el ends here
diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el
index 9220495bbf8..ddbbf804962 100644
--- a/lisp/progmodes/prolog.el
+++ b/lisp/progmodes/prolog.el
@@ -1,4 +1,5 @@
-;; Major mode for editing Prolog, and for running Prolog under Emacs
+;;; prolog.el --- major mode for editing and running Prolog under Emacs
+
;; Copyright (C) 1986, 1987 Free Software Foundation, Inc.
;; Author Masanobu UMEDA (umerin@flab.flab.fujitsu.junet)
@@ -256,3 +257,5 @@ If COMPILE (prefix arg) is not nil, use compile mode rather than consult mode."
(interactive "P\nr")
(prolog-consult-region compile beg end)
(switch-to-buffer "*prolog*"))
+
+;;; prolog.el ends here