summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/tex-mode.el4
-rw-r--r--lisp/textmodes/texinfmt.el5
-rw-r--r--lisp/textmodes/texinfo.el4
-rw-r--r--lisp/textmodes/texnfo-upd.el6
-rw-r--r--lisp/textmodes/text-mode.el5
-rw-r--r--lisp/textmodes/underline.el5
6 files changed, 18 insertions, 11 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index eb5ff51e932..bc92872d951 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -1,4 +1,5 @@
-;; TeX, LaTeX, and SliTeX mode commands.
+;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands.
+
;; Copyright (C) 1985, 1986, 1989 Free Software Foundation, Inc.
;; Rewritten following contributions by William F. Schelter
;; and Dick King (king@kestrel).
@@ -803,3 +804,4 @@ Runs the shell command defined by tex-show-queue-command."
(provide 'tex-mode)
+;;; tex-mode.el ends here
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index 7d38045eb8c..f23ffbba7aa 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -1,5 +1,4 @@
-;;;; texinfmt.el
-;;;; Convert Texinfo files to Info files.
+;;;; texinfmt.el --- convert Texinfo files to Info files.
;;;; Version 2.00 14 Dec 1990
@@ -1819,3 +1818,5 @@ For example, invoke
(message ">> %s" s))
(setq error 1))))
(kill-emacs error))))
+
+;;; texinfmt.el ends here
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index edb72a8ed54..76cbc5b2a2b 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -1,5 +1,4 @@
-;;;; texinfo.el
-;;;; Major mode for editing Texinfo files.
+;;;; texinfo.el ---- major mode for editing Texinfo files.
;;;; Version 2.00 14 Dec 1990
@@ -413,3 +412,4 @@ Runs the shell command defined by tex-dvi-print-command."
(provide 'texinfo)
+;;; texinfo.el ends here
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el
index 6954952ca61..377de8a6ab9 100644
--- a/lisp/textmodes/texnfo-upd.el
+++ b/lisp/textmodes/texnfo-upd.el
@@ -1,5 +1,4 @@
-;;;; texnfo-upd.el
-;;;; A utility for updating nodes and menus in Texinfo files.
+;;; texnfo-upd.el --- a utility for updating nodes and menus in Texinfo files.
;;;; Version 2.00 14 Dec 1990
@@ -1721,7 +1720,6 @@ chapter."
included-file-list)))))
(message "Multiple files updated."))
-;;;;;;;;;;;;;;;; end texnfo-upd.el ;;;;;;;;;;;;;;;;
-
(provide 'texnfo-upd)
+;;; texnfo-upd.el ends here
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el
index 39122d5e436..56a4ab59c59 100644
--- a/lisp/textmodes/text-mode.el
+++ b/lisp/textmodes/text-mode.el
@@ -1,4 +1,5 @@
-;; Text mode, and its ideosyncratic commands.
+;;; text-mode.el --- text mode, and its idiosyncratic commands.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -148,3 +149,5 @@ the distance between the end of the text and `fill-column'."
(indent-to
(+ left-margin
(/ (- fill-column left-margin line-length) 2))))))
+
+;;; text-mode.el ends here
diff --git a/lisp/textmodes/underline.el b/lisp/textmodes/underline.el
index 89edcfefe34..da341b2ab9c 100644
--- a/lisp/textmodes/underline.el
+++ b/lisp/textmodes/underline.el
@@ -1,4 +1,5 @@
-;; Insert or remove underlining (done by overstriking) in Emacs.
+;;; underline.el --- insert/remove underlining (done by overstriking) in Emacs.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -46,3 +47,5 @@ which specify the range to operate on."
(goto-char (min start end))
(while (re-search-forward "_\\|_" end1 t)
(delete-char -2)))))
+
+;;; underline.el ends here