summaryrefslogtreecommitdiff
path: root/lisp/textmodes
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/textmodes
parentc88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d (diff)
downloademacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.tar.gz
emacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.tar.bz2
emacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.zip
*** empty log message ***
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/nroff-mode.el6
-rw-r--r--lisp/textmodes/ooutline.el4
-rw-r--r--lisp/textmodes/page-ext.el6
-rw-r--r--lisp/textmodes/page.el6
-rw-r--r--lisp/textmodes/paragraphs.el5
-rw-r--r--lisp/textmodes/picture.el4
-rw-r--r--lisp/textmodes/refbib.el5
7 files changed, 25 insertions, 11 deletions
diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el
index 35bf4213615..4806273cab8 100644
--- a/lisp/textmodes/nroff-mode.el
+++ b/lisp/textmodes/nroff-mode.el
@@ -1,4 +1,4 @@
-;; GNU Emacs major mode for editing nroff source
+;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -17,8 +17,6 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
-
(defvar nroff-mode-abbrev-table nil
"Abbrev table used while in nroff mode.")
@@ -34,6 +32,7 @@
(define-key nroff-mode-map "\en" 'forward-text-line)
(define-key nroff-mode-map "\ep" 'backward-text-line)))
+;;;###autoload
(defun nroff-mode ()
"Major mode for editing text intended for nroff to format.
\\{nroff-mode-map}
@@ -200,3 +199,4 @@ turns it on iff arg is positive, otherwise off."
(cond ((null arg) (null nroff-electric-mode))
(t (> (prefix-numeric-value arg) 0)))))
+;;; nroff-mode.el ends here
diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el
index 33b716d8120..3580c1e54b5 100644
--- a/lisp/textmodes/ooutline.el
+++ b/lisp/textmodes/ooutline.el
@@ -1,4 +1,5 @@
-;; Outline mode commands for Emacs
+;;; outline.el --- outline mode commands for Emacs
+
;; Copyright (C) 1986 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -395,3 +396,4 @@ and return that position or nil if it cannot be found."
nil
(point))))
+;;; outline.el ends here
diff --git a/lisp/textmodes/page-ext.el b/lisp/textmodes/page-ext.el
index c17fa187551..13f331c4312 100644
--- a/lisp/textmodes/page-ext.el
+++ b/lisp/textmodes/page-ext.el
@@ -1,6 +1,5 @@
-;;;; page-ext.el
+;;; page-ext.el --- page handling commands
-;;; Page handling commands
;;; by Robert J. Chassell
;;; You may use these commands to handle an address list or other
@@ -742,4 +741,5 @@ to the same line in the pages buffer."
(make-local-variable 'pages-pos-list)
(make-local-variable 'pages-directory-buffer-narrowing-p))
-;;;;;;;;;;;;;;;; end of page-ext.el ;;;;;;;;;;;;;;;;
+;;; page-ext.el ends here
+
diff --git a/lisp/textmodes/page.el b/lisp/textmodes/page.el
index 576e23a7560..935e19bdba4 100644
--- a/lisp/textmodes/page.el
+++ b/lisp/textmodes/page.el
@@ -1,4 +1,5 @@
-;; Page motion commands for emacs.
+;;; page.el --- page motion commands for emacs.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -89,6 +90,7 @@ thus showing a page other than the one point was originally in."
(if (and (eolp) (not (bobp)))
(forward-line 1))
(point)))))
+(put 'narrow-to-page 'disabled t)
(defun count-lines-page ()
"Report number of lines on current page, and how many are before or after point."
@@ -123,3 +125,5 @@ thus showing a page other than the one point was originally in."
(message "Page %d, line %d"
count
(1+ (count-lines (point) opoint)))))))
+
+;;; page.el ends here
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 55b9fc6e45a..2235c0b903a 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -1,4 +1,5 @@
-;; Paragraph and sentence parsing.
+;;; paragraphs.el --- paragraph and sentence parsing.
+
;; Copyright (C) 1985-1991 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -228,3 +229,5 @@ With arg, repeat, or kill forward to Nth end of sentence if negative arg -N."
"Interchange this (next) and previous sentence."
(interactive "*p")
(transpose-subr 'forward-sentence arg))
+
+;;; paragraphs.el ends here
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el
index a72dee496ae..516ccd646de 100644
--- a/lisp/textmodes/picture.el
+++ b/lisp/textmodes/picture.el
@@ -1,4 +1,5 @@
-;; "Picture mode" -- editing using quarter-plane screen model.
+;;; picture.el --- "Picture mode" -- editing using quarter-plane screen model.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Principal author K. Shane Hartman
@@ -559,3 +560,4 @@ With no argument strips whitespace from end of every line in Picture buffer
(provide 'picture)
+;;; picture.el ends here
diff --git a/lisp/textmodes/refbib.el b/lisp/textmodes/refbib.el
index cba3a2ba0f5..e0eb0614d70 100644
--- a/lisp/textmodes/refbib.el
+++ b/lisp/textmodes/refbib.el
@@ -1,4 +1,5 @@
-;; Convert refer-style bibliographic entries to ones usable by latex bib
+;;; refbib.el --- convert refer-style references to ones usable by Latex bib
+
;; Copyright (C) 1989 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -709,3 +710,5 @@ To see this message again, perform
(message "r2b loaded")
(provide 'refer-to-bibtex)
+
+;;; refbib.el ends here