summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 21:11:25 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 21:11:25 +0000
commitc88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d (patch)
tree0dddeeff29c5a9f505aa940c413efc05d73964a6 /lisp/textmodes
parentd501f51645d966e8fe2febba698779996b33eb21 (diff)
downloademacs-c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d.tar.gz
emacs-c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d.tar.bz2
emacs-c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d.zip
*** empty log message ***
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/scribe.el5
-rw-r--r--lisp/textmodes/spell.el5
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el
index 6dbbb790292..7cc1bc26057 100644
--- a/lisp/textmodes/scribe.el
+++ b/lisp/textmodes/scribe.el
@@ -1,4 +1,5 @@
-;; scribe mode, and its ideosyncratic commands.
+;;; scribe.el --- scribe mode, and its idiosyncratic commands.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file might become part of GNU Emacs.
@@ -306,3 +307,5 @@ preceding text is of the form @Command."
scribe-open-parentheses)))
(save-excursion
(insert (aref scribe-close-parentheses paren-char)))))))
+
+;;; scribe.el ends here
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el
index b3157f3c1b1..85adb6b4154 100644
--- a/lisp/textmodes/spell.el
+++ b/lisp/textmodes/spell.el
@@ -1,4 +1,5 @@
-;; Spelling correction interface for Emacs.
+;;; spell.el --- spelling correction interface for Emacs.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -134,3 +135,5 @@ for example, \"word\"."
(while (search-forward "\n" nil t)
(replace-match " "))
(message "%sincorrect" (buffer-substring 1 (point-max)))))))
+
+;;; spell.el ends here