diff options
| author | Eric S. Raymond | 1993-03-22 22:44:33 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1993-03-22 22:44:33 +0000 |
| commit | c91c4e6d7f2287a65bec3fd1b93997f518a5c4ea (patch) | |
| tree | a1b00d5c22fc9239a0331c7bbc9d711a65644138 | |
| parent | a100548014c325e06d360997c9a305932d909cfc (diff) | |
| download | emacs-c91c4e6d7f2287a65bec3fd1b93997f518a5c4ea.tar.gz emacs-c91c4e6d7f2287a65bec3fd1b93997f518a5c4ea.zip | |
Added or corrected Commentary section
| -rw-r--r-- | lisp/emulation/vip.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/underline.el | 7 | ||||
| -rw-r--r-- | lisp/time.el | 5 | ||||
| -rw-r--r-- | lisp/timer.el | 6 | ||||
| -rw-r--r-- | lisp/uncompress.el | 7 | ||||
| -rw-r--r-- | lisp/view.el | 5 | ||||
| -rw-r--r-- | lisp/xscheme.el | 8 |
7 files changed, 38 insertions, 4 deletions
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el index 14da705e602..e9792745861 100644 --- a/lisp/emulation/vip.el +++ b/lisp/emulation/vip.el | |||
| @@ -6,6 +6,8 @@ | |||
| 6 | 6 | ||
| 7 | ;;; Commentary: | 7 | ;;; Commentary: |
| 8 | 8 | ||
| 9 | ;; A full-featured vi(1) emulator. | ||
| 10 | ;; | ||
| 9 | ;; In Japan, the author's address is: masahiko@sato.riec.tohoku.junet | 11 | ;; In Japan, the author's address is: masahiko@sato.riec.tohoku.junet |
| 10 | ;; | 12 | ;; |
| 11 | ;; Send suggestions and bug reports to one of the above addresses. | 13 | ;; Send suggestions and bug reports to one of the above addresses. |
| @@ -274,7 +276,7 @@ Type `n' to quit this window for now.\n") | |||
| 274 | (vip-change-mode 'emacs-mode)) | 276 | (vip-change-mode 'emacs-mode)) |
| 275 | 277 | ||
| 276 | 278 | ||
| 277 | ;; escape to emacs mode termporarilly | 279 | ;; escape to emacs mode temporarily |
| 278 | 280 | ||
| 279 | (defun vip-get-editor-command (l-map g-map &optional str) | 281 | (defun vip-get-editor-command (l-map g-map &optional str) |
| 280 | "Read characters from keyboard until an editor command is formed, using | 282 | "Read characters from keyboard until an editor command is formed, using |
diff --git a/lisp/textmodes/underline.el b/lisp/textmodes/underline.el index 2f6ef391e06..269acd01b93 100644 --- a/lisp/textmodes/underline.el +++ b/lisp/textmodes/underline.el | |||
| @@ -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 package deals with the primitive form of underlining | ||
| 27 | ;; consisting of prefixing each character with "_\^h". The entry | ||
| 28 | ;; point `underline-region' performs such underlining on a region. | ||
| 29 | ;; The entry point `ununderline-region' removes it. | ||
| 30 | |||
| 24 | ;;; Code: | 31 | ;;; Code: |
| 25 | 32 | ||
| 26 | ;;;###autoload | 33 | ;;;###autoload |
diff --git a/lisp/time.el b/lisp/time.el index 562dc06d86a..492552431eb 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -20,6 +20,11 @@ | |||
| 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 | ;;; Commentary: | ||
| 24 | |||
| 25 | ;;; Facilities to display current time/date and a new-mail indicator | ||
| 26 | ;;; in the Emacs mode line. The single entry point is `display-time'. | ||
| 27 | |||
| 23 | ;;; Code: | 28 | ;;; Code: |
| 24 | 29 | ||
| 25 | (defvar display-time-mail-file nil | 30 | (defvar display-time-mail-file nil |
diff --git a/lisp/timer.el b/lisp/timer.el index 8e0b5a3c7eb..62d13f11624 100644 --- a/lisp/timer.el +++ b/lisp/timer.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 | ;;; Commentary: | ||
| 24 | |||
| 25 | ;; This package gives you the capability to run Emacs Lisp commands at | ||
| 26 | ;; specified simes in the future, either as one-shots or periodically. | ||
| 27 | ;; The single entry point is `run-at-time'. | ||
| 28 | |||
| 23 | ;;; Code: | 29 | ;;; Code: |
| 24 | 30 | ||
| 25 | (defvar timer-process nil) | 31 | (defvar timer-process nil) |
diff --git a/lisp/uncompress.el b/lisp/uncompress.el index 52e7063a066..212c254ba67 100644 --- a/lisp/uncompress.el +++ b/lisp/uncompress.el | |||
| @@ -20,6 +20,13 @@ | |||
| 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 | ;;; Commentary: | ||
| 24 | |||
| 25 | ;; This package can be used to arrange for automatic uncompress of | ||
| 26 | ;; files packed with the UNIX compress(1) utility when they are visited. | ||
| 27 | ;; All that's necessary is to load it. This can conveniently be done from | ||
| 28 | ;; your .emacs file. | ||
| 29 | |||
| 23 | ;;; Code: | 30 | ;;; Code: |
| 24 | 31 | ||
| 25 | ;; When we are about to make a backup file, | 32 | ;; When we are about to make a backup file, |
diff --git a/lisp/view.el b/lisp/view.el index bcb54fee03c..a4b6442beb0 100644 --- a/lisp/view.el +++ b/lisp/view.el | |||
| @@ -21,6 +21,11 @@ | |||
| 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 package provides the `view' major mode documented in the Emacs | ||
| 27 | ;; user's manual. | ||
| 28 | |||
| 24 | ;;; Code: | 29 | ;;; Code: |
| 25 | 30 | ||
| 26 | (defvar view-mode-map nil) | 31 | (defvar view-mode-map nil) |
diff --git a/lisp/xscheme.el b/lisp/xscheme.el index 6d8e3deadf9..c89ceaed073 100644 --- a/lisp/xscheme.el +++ b/lisp/xscheme.el | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | ;; Copyright (C) 1986, 1987, 1989, 1990 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986, 1987, 1989, 1990 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: FSF | 5 | ;; Maintainer: FSF |
| 6 | ;; Keywords: languages | 6 | ;; Keywords: languages lisp |
| 7 | 7 | ||
| 8 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| 9 | 9 | ||
| @@ -23,8 +23,10 @@ | |||
| 23 | 23 | ||
| 24 | ;;; Commentary: | 24 | ;;; Commentary: |
| 25 | 25 | ||
| 26 | ;;; Requires C-Scheme release 5 or later | 26 | ;; A major mode for editing Scheme and interacting with MIT's C-Scheme. |
| 27 | ;;; Changes to Control-G handler require runtime version 13.85 or later | 27 | ;; |
| 28 | ;; Requires C-Scheme release 5 or later | ||
| 29 | ;; Changes to Control-G handler require runtime version 13.85 or later | ||
| 28 | 30 | ||
| 29 | ;;; Code: | 31 | ;;; Code: |
| 30 | 32 | ||