From 6cf0d154a1e22e6c8da5aa55245ba1fde2859d7b Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 14 Jul 1992 18:50:09 +0000 Subject: [PATCH] *** empty log message *** --- lisp/emulation/ws-mode.el | 9 +++++---- lisp/play/yow.el | 18 +++++++++++++----- lisp/xscheme.el | 7 +++++++ 3 files changed, 25 insertions(+), 9 deletions(-) diff --git a/lisp/emulation/ws-mode.el b/lisp/emulation/ws-mode.el index 27c6b60ba99..2dd39df74b7 100644 --- a/lisp/emulation/ws-mode.el +++ b/lisp/emulation/ws-mode.el @@ -1,8 +1,8 @@ ;;; ws-mode.el --- WordStar emulation mode for GNU Emacs -;; Author: Juergen Nickelsen -;; Created: 13 Feb 1991 -;; Version: 0.7 +;; Author: Juergen Nickelsen +;; Created: 13 Feb 1991 +;; Version: 0.7 ;; Copyright (C) 1991 Free Software Foundation, Inc. @@ -21,6 +21,7 @@ ;; file named COPYING. Among other things, the copyright notice ;; and this notice must be preserved on all copies. +;;; Commentary: ;; How to install ws-mode.el: ;; @@ -52,7 +53,7 @@ ;; ;; Enjoy! - +;;; Code: (defun wordstar-mode () "Major mode with WordStar-like key bindings. diff --git a/lisp/play/yow.el b/lisp/play/yow.el index c638c5cd834..9f71ee5b925 100644 --- a/lisp/play/yow.el +++ b/lisp/play/yow.el @@ -1,4 +1,7 @@ -;; yow.el --- generate random zippyisms +;;; yow.el --- generate random zippyisms + +;; Maintainer: FSF +;; Last-modified: 14 Jun 1992 ;; Copyright (C) 1985, 1987 Free Software Foundation, Inc. @@ -18,13 +21,18 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: + +;; Important pinheaddery for GNU Emacs. +;; Expects file emacs/etc/yow.lines to be in ITS-style LINS format +;; (ie strings terminated by ascii 0 characters. Leading whitespace ignored) +;; Everything up to the first \000 is a comment. + +;;; Code: + ; Randomize the seed in the random number generator. (random t) -; Important pinheaddery for GNU Emacs. -; Expects file emacs/etc/yow.lines to be in ITS-style LINS format -; (ie strings terminated by ascii 0 characters. Leading whitespace ignored) -; Everything up to the first \000 is a comment. ;;;###autoload (defun yow (&optional n interactive) "Return or display a Zippy quotation." diff --git a/lisp/xscheme.el b/lisp/xscheme.el index d2a2cceb2ae..dea0a6befb7 100644 --- a/lisp/xscheme.el +++ b/lisp/xscheme.el @@ -1,5 +1,8 @@ ;;; xscheme.el --- run Scheme under Emacs +;;; Maintainer: FSF +;;; Last-Modified: 21 Jan 1987 + ;; Copyright (C) 1986, 1987, 1989, 1990 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -18,9 +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: + ;;; Requires C-Scheme release 5 or later ;;; Changes to Control-G handler require runtime version 13.85 or later +;;; Code: + ;;; $Header: xscheme.el,v 1.26 90/09/11 01:51:20 GMT cph Exp $ (require 'scheme) -- 2.11.4.GIT