diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-22 22:44:33 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-22 22:44:33 +0000 |
commit | ebd482e980b7efd4fab8673b08cc0806050b9331 (patch) | |
tree | e3cbdb7e4da19dfc6b211aeaaa04756d08eff069 | |
parent | 78708a618c05ffc96b2748cd940cb77efda9e2c7 (diff) | |
download | emacs-ebd482e980b7efd4fab8673b08cc0806050b9331.tar.gz |
Added or corrected Commentary section
-rw-r--r-- | lisp/=timer.el | 6 | ||||
-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/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/=timer.el b/lisp/=timer.el index 8e0b5a3c7eb..62d13f11624 100644 --- a/lisp/=timer.el +++ b/lisp/=timer.el @@ -20,6 +20,12 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: + +;; This package gives you the capability to run Emacs Lisp commands at +;; specified simes in the future, either as one-shots or periodically. +;; The single entry point is `run-at-time'. + ;;; Code: (defvar timer-process nil) 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 @@ ;;; Commentary: +;; A full-featured vi(1) emulator. +;; ;; In Japan, the author's address is: masahiko@sato.riec.tohoku.junet ;; ;; Send suggestions and bug reports to one of the above addresses. @@ -274,7 +276,7 @@ Type `n' to quit this window for now.\n") (vip-change-mode 'emacs-mode)) -;; escape to emacs mode termporarilly +;; escape to emacs mode temporarily (defun vip-get-editor-command (l-map g-map &optional str) "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 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: + +;; This package deals with the primitive form of underlining +;; consisting of prefixing each character with "_\^h". The entry +;; point `underline-region' performs such underlining on a region. +;; The entry point `ununderline-region' removes it. + ;;; Code: ;;;###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 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: + +;;; Facilities to display current time/date and a new-mail indicator +;;; in the Emacs mode line. The single entry point is `display-time'. + ;;; Code: (defvar display-time-mail-file 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 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: + +;; This package can be used to arrange for automatic uncompress of +;; files packed with the UNIX compress(1) utility when they are visited. +;; All that's necessary is to load it. This can conveniently be done from +;; your .emacs file. + ;;; Code: ;; 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 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: + +;; This package provides the `view' major mode documented in the Emacs +;; user's manual. + ;;; Code: (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 @@ ;; Copyright (C) 1986, 1987, 1989, 1990 Free Software Foundation, Inc. ;; Maintainer: FSF -;; Keywords: languages +;; Keywords: languages lisp ;; This file is part of GNU Emacs. @@ -23,8 +23,10 @@ ;;; Commentary: -;;; Requires C-Scheme release 5 or later -;;; Changes to Control-G handler require runtime version 13.85 or later +;; A major mode for editing Scheme and interacting with MIT's C-Scheme. +;; +;; Requires C-Scheme release 5 or later +;; Changes to Control-G handler require runtime version 13.85 or later ;;; Code: |