Mercurial > emacs
changeset 789:71d052f72ac1
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Wed, 15 Jul 1992 23:29:10 +0000 |
parents | c8d4eb38ebfc |
children | 47ec7c4c42bc |
files | lisp/emacs-lisp/profile.el lisp/emulation/vi.el lisp/mail/rfc822.el lisp/progmodes/perl-mode.el lisp/rect.el lisp/register.el lisp/replace.el lisp/startup.el lisp/textmodes/nroff-mode.el lisp/textmodes/paragraphs.el lisp/textmodes/scribe.el |
diffstat | 11 files changed, 47 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/profile.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/emacs-lisp/profile.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,9 +1,10 @@ ;;; profile.el -- generate run time measurements of elisp functions -;;; -;;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu> -;;; Created: Feb. 7, 1992 -;;; Last Modified: Feb. 7, 1992 -;;; Version: 1.0 + +;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu> +;; Created: 7 Feb 1992 +;; Last-Modified: 7 Feb 1992 +;; Version: 1.0 +;; Adapted-By: ESR ;; Copyright (C) 1992 Free Software Foundation, Inc. @@ -23,6 +24,7 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: ; DESCRIPTION: ; ------------ @@ -131,6 +133,8 @@ ;} ; -------- end of clip ---------------- +;;; Code: + ;;; ;;; User modifiable VARIABLES ;;;
--- a/lisp/emulation/vi.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/emulation/vi.el Wed Jul 15 23:29:10 1992 +0000 @@ -2,7 +2,7 @@ ;; Author: Neal Ziring <nz@rsch.wisc.edu> ;; Felix S. T. Wu <wu@crys.wisc.edu> -;; Last-Modified: 7 Jan 1987 +;; Last-Modified: 07 Jan 1987 ;;; Commentary:
--- a/lisp/mail/rfc822.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/mail/rfc822.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,7 +1,10 @@ ;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike +;; Author: Richard Mlynarik <mly@eddie.mit.edu> +;; Maintainer: FSF +;; Last-Modified: 26 Nov 1990 + ;; Copyright (C) 1986-1990 Free Software Foundation, Inc. -;; Author Richard Mlynarik. ;; This file is part of GNU Emacs. @@ -19,6 +22,8 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Code: + ;; uses address-start free, throws to address (defun rfc822-bad-address (reason) (save-restriction
--- a/lisp/progmodes/perl-mode.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/progmodes/perl-mode.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,4 +1,10 @@ -;; Perl code editing commands for GNU Emacs +;;; perl-mode.el --- Perl code editing commands for GNU Emacs + +;; Author: William F. Mann +;; Maintainer: FSF +;; Last-Modified: 21 Dec 1991 +;; Adapted-By: ESR + ;; Copyright (C) 1990 William F. Mann ;; Adapted from C code editing commands 'c-mode.el', Copyright 1987 by the ;; Free Software Foundation, under terms of its General Public License. @@ -21,6 +27,8 @@ ;; file named COPYING. Among other things, the copyright notice ;; and this notice must be preserved on all copies. +;;; Commentary: + ;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode") ;; to your .emacs file and change the first line of your perl script to: ;; #!/usr/bin/perl -- # -*-Perl-*- @@ -89,6 +97,7 @@ ;; [$DB'line#' ;; ] =~ s/;9$//; +;;; Code: (defvar perl-mode-abbrev-table nil "Abbrev table in use in perl-mode buffers.")
--- a/lisp/rect.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/rect.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,5 +1,8 @@ ;;; rect.el --- rectangle functions for GNU Emacs. +;; Maintainer: FSF +;; Last-Modified: 9 May 1991 + ;; Copyright (C) 1985 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -18,6 +21,7 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Code: (defun operate-on-rectangle (function start end coerce-tabs) "Call FUNCTION for each line of rectangle with corners at START, END.
--- a/lisp/register.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/register.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,5 +1,8 @@ ;;; register.el --- register commands for Emacs. +;; Maintainer: FSF +;; Last-Modified: 9 Jul 1992 + ;; Copyright (C) 1985 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -18,6 +21,7 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Code: (defvar register-alist nil "Alist of elements (NAME . CONTENTS), one for each Emacs register.
--- a/lisp/replace.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/replace.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,7 +1,7 @@ ;;; replace.el --- replace commands for Emacs. ;; Maintainer: FSF -;; Last-Modified: 9 Jul 1992 +;; Last-Modified: 09 Jul 1992 ;; Copyright (C) 1985, 86, 87, 88, 89, 90, 91, 92 Free Software Foundation, Inc.
--- a/lisp/startup.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/startup.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,7 +1,7 @@ ;;; startup.el --- process Emacs shell arguments ;; Maintainer: FSF -;; Last-Modified: 9 Jul 1992 +;; Last-Modified: 09 Jul 1992 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
--- a/lisp/textmodes/nroff-mode.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/textmodes/nroff-mode.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,4 +1,8 @@ ;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source + +;; Maintainer: FSF +;; Last-Modified: 9 May 1991 + ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -17,6 +21,8 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Code: + (defvar nroff-mode-abbrev-table nil "Abbrev table used while in nroff mode.")
--- a/lisp/textmodes/paragraphs.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/textmodes/paragraphs.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,5 +1,8 @@ ;;; paragraphs.el --- paragraph and sentence parsing. +;; Maintainer: FSF +;; Last-Modified: 13 May 1991 + ;; Copyright (C) 1985-1991 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -18,6 +21,7 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Code: (defconst paragraph-start "^[ \t\n\f]" "\ *Regexp for beginning of a line that starts OR separates paragraphs.")
--- a/lisp/textmodes/scribe.el Wed Jul 15 22:39:32 1992 +0000 +++ b/lisp/textmodes/scribe.el Wed Jul 15 23:29:10 1992 +0000 @@ -1,7 +1,7 @@ ;;; scribe.el --- scribe mode, and its idiosyncratic commands. ;; Maintainer: FSF -;; Last-Modified: 9 May 1991 +;; Last-Modified: 09 May 1991 ;; Copyright (C) 1985 Free Software Foundation, Inc.