diff options
| author | Eric S. Raymond | 1993-03-22 16:53:22 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1993-03-22 16:53:22 +0000 |
| commit | d9ecc911ffc5f2d961a8c96129bafbb8d16a17f7 (patch) | |
| tree | 4a2047cd2e40b4519db2e107ac9a80fd67e1bee8 /lisp/textmodes | |
| parent | 709f7988d203ebbd052805a183d943cd8dd6867d (diff) | |
| download | emacs-d9ecc911ffc5f2d961a8c96129bafbb8d16a17f7.tar.gz emacs-d9ecc911ffc5f2d961a8c96129bafbb8d16a17f7.zip | |
Added or corrected Commentary headers
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/scribe.el | 6 | ||||
| -rw-r--r-- | lisp/textmodes/sgml-mode.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/spell.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/text-mode.el | 6 |
4 files changed, 22 insertions, 1 deletions
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el index 6954f5c6284..d664292c3d1 100644 --- a/lisp/textmodes/scribe.el +++ b/lisp/textmodes/scribe.el | |||
| @@ -21,6 +21,12 @@ | |||
| 21 | ;; It should be in a file named COPYING. Among other things, the | 21 | ;; It should be in a file named COPYING. Among other things, the |
| 22 | ;; copyright notice and this notice must be preserved on all copies. | 22 | ;; copyright notice and this notice must be preserved on all copies. |
| 23 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;; A major mode for editing source in written for the Scribe text formatter. | ||
| 27 | ;; Knows about Scribe syntax and standard layout rules. The command to | ||
| 28 | ;; run Scribe on a buffer is bogus; someone interested should fix it. | ||
| 29 | |||
| 24 | ;;; Code: | 30 | ;;; Code: |
| 25 | 31 | ||
| 26 | (defvar scribe-mode-syntax-table nil | 32 | (defvar scribe-mode-syntax-table nil |
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index b6200ac0bc7..676edaf0519 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el | |||
| @@ -24,6 +24,8 @@ | |||
| 24 | 24 | ||
| 25 | ;;; Commentary: | 25 | ;;; Commentary: |
| 26 | 26 | ||
| 27 | ;; Major mode for editing the SGML document-markup language. | ||
| 28 | ;; | ||
| 27 | ;; Some suggestions for your .emacs file: | 29 | ;; Some suggestions for your .emacs file: |
| 28 | ;; | 30 | ;; |
| 29 | ;; (autoload 'sgml-mode "sgml-mode" "SGML mode" t) | 31 | ;; (autoload 'sgml-mode "sgml-mode" "SGML mode" t) |
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el index 6e05a8c0fad..e1ed847ca79 100644 --- a/lisp/textmodes/spell.el +++ b/lisp/textmodes/spell.el | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: FSF | 5 | ;; Maintainer: FSF |
| 6 | ;; Keywords: wp | 6 | ;; Keywords: wp, unix |
| 7 | 7 | ||
| 8 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| 9 | 9 | ||
| @@ -21,6 +21,13 @@ | |||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 22 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 22 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 23 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;; This mode orovides an Emacs interface to the UNIX spell(1) program. | ||
| 27 | ;; Entry points are `spell-buffer', `spell-word', `spell-region' and | ||
| 28 | ;; `spell-string'. These facilities are documented in the Emacs user's | ||
| 29 | ;; manual. | ||
| 30 | |||
| 24 | ;;; Code: | 31 | ;;; Code: |
| 25 | 32 | ||
| 26 | (defvar spell-command "spell" | 33 | (defvar spell-command "spell" |
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 0f9229e80a3..b4b543f9a47 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -20,6 +20,12 @@ | |||
| 20 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 20 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 21 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 21 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | 22 | ||
| 23 | |||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;; This package provides the fundamental text mode documented in the | ||
| 27 | ;; Emacs user's manual. | ||
| 28 | |||
| 23 | ;;; Code: | 29 | ;;; Code: |
| 24 | 30 | ||
| 25 | (defvar text-mode-syntax-table nil | 31 | (defvar text-mode-syntax-table nil |