Mercurial > emacs
changeset 841:2cdce064065f
entered into RCS
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Wed, 22 Jul 1992 02:58:48 +0000 |
parents | 113281b361ec |
children | 5ce0a9ac1ea7 |
files | lisp/=sun-keys.el lisp/=superyank.el lisp/=vmsx.el lisp/emacs-lisp/copyright.el lisp/emacs-lisp/tq.el lisp/emulation/mlsupport.el lisp/emulation/vi.el lisp/emulation/vip.el lisp/emulation/ws-mode.el lisp/international/swedish.el lisp/mail/undigest.el lisp/play/spook.el lisp/play/studly.el lisp/play/yow.el lisp/progmodes/make-mode.el lisp/progmodes/modula2.el lisp/progmodes/simula.el lisp/sun-fns.el lisp/tabify.el lisp/telnet.el lisp/term/sun-mouse.el lisp/term/sup-mouse.el lisp/textmodes/spell.el lisp/textmodes/texinfmt.el lisp/textmodes/texnfo-upd.el lisp/textmodes/text-mode.el lisp/textmodes/underline.el lisp/time.el lisp/uncompress.el lisp/userlock.el lisp/vmsproc.el lisp/vt100-led.el lisp/window.el lisp/x-menu.el |
diffstat | 34 files changed, 98 insertions(+), 90 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/=sun-keys.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/=sun-keys.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; sun-keys.el --- support for Sun function keys +;;; Copyright (C) 1986 Free Software Foundation, Inc. + ;; Author: Ian G. Batten <batten@uk.ac.bham.multics> -;; Last-Modified: 30 May 1992 ;; Keywords: terminals -;;; Copyright (C) 1986 Free Software Foundation, Inc. -;;; ;;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/=superyank.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/=superyank.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,28 @@ ;;; superyank.el --- smart message-yanking code for GNUS +;; Copyright (C) 1992 Free Software Foundation, Inc. + ;; Author: Barry A. Warsaw <warsaw@cme.nist.gov> ;; Version: 1.1 -;; Last-Modified: 15 Jul 1992 ;; Adapted-By: ESR ;; Keywords: news +;; This file is part of GNU Emacs. + +;; GNU Emacs is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 2, or (at your option) +;; any later version. + +;; GNU Emacs is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs; see the file COPYING. If not, write to +;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + ;;; Commentary: ;; Inserts the message being replied to with various user controlled
--- a/lisp/=vmsx.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/=vmsx.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,12 +1,11 @@ ;;; vmsx.el --- run asynchronous VMS subprocesses under Emacs +;; Copyright (C) 1986 Free Software Foundation, Inc. + ;; Author: Mukesh Prasad ;; Maintainer: FSF -;; Last-Modified: 29 Sep 1986 ;; Keywords: vms -;; Copyright (C) 1986 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/emacs-lisp/copyright.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/emacs-lisp/copyright.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,12 @@ ;;; upd-copyr.el --- update the copyright notice in a GNU Emacs Lisp file +;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc. + ;; Author: Roland McGrath <roland@gnu.ai.mit.edu> -;; Last-Modified: 03 Jun 1991 ;; Keywords: maint -;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc. -;;; +;;; This file is part of GNU Emacs. + ;;; This program is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 2, or (at your option)
--- a/lisp/emacs-lisp/tq.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/emacs-lisp/tq.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,10 +1,28 @@ ;;; tq.el --- utility to maintain a transaction queue +;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. + ;; Author: Scott Draves <spot@cs.cmu.edu> ;; Adapted-By: ESR ;; Keywords: extensions -;; Commentary: +;; This file is part of GNU Emacs. + +;; GNU Emacs is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 2, or (at your option) +;; any later version. + +;; GNU Emacs is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs; see the file COPYING. If not, write to +;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +;;; Commentary: ;;; manages receiving a stream asynchronously, ;;; parsing it into transactions, and then calling @@ -18,8 +36,6 @@ ;;; Code: -(provide 'tq) - (defun tq-create (process) "Create and return a transaction queue. PROCESS should be capable of sending and receiving streams of bytes. It may be a local process, @@ -92,4 +108,6 @@ (tq-queue-pop tq) (tq-process-buffer tq)))))) +(provide 'tq) + ;;; tq.el ends here
--- a/lisp/emulation/mlsupport.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/emulation/mlsupport.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; mlsupport.el --- run-time support for mocklisp code. +;; Copyright (C) 1985 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 16 Mar 1992 ;; Keywords: extensions -;; Copyright (C) 1985 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/emulation/vi.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/emulation/vi.el Wed Jul 22 02:58:48 1992 +0000 @@ -2,7 +2,6 @@ ;; Author: Neal Ziring <nz@rsch.wisc.edu> ;; Felix S. T. Wu <wu@crys.wisc.edu> -;; Last-Modified: 07 Jan 1987 ;; Keywords: emulations ;;; Commentary:
--- a/lisp/emulation/vip.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/emulation/vip.el Wed Jul 22 02:58:48 1992 +0000 @@ -2,7 +2,6 @@ ;; Author: Masahiko Sato <ms@sail.stanford.edu> ;; Version: 3.5 -;; Last-Modified: 15 Sep 1987 ;; Keywords: emulations ;;; Commentary:
--- a/lisp/emulation/ws-mode.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/emulation/ws-mode.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,12 +1,11 @@ ;;; ws-mode.el --- WordStar emulation mode for GNU Emacs +;; Copyright (C) 1991 Free Software Foundation, Inc. + ;; Author: Juergen Nickelsen <nickel@cs.tu-berlin.de> -;; Last-Modified: 13 Feb 1991 ;; Version: 0.7 ;; Keywords: emulations -;; Copyright (C) 1991 Free Software Foundation, Inc. - ;; This file is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY. No author or distributor ;; accepts responsibility to anyone for the consequences of using it
--- a/lisp/international/swedish.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/international/swedish.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,10 @@ ;;; swedish.el --- miscellaneous functions for dealing with Swedish. +;; Copyright (C) 1988 Free Software Foundation, Inc. + ;; Author: Howard Gayle ;; Maintainer: FSF - -;; Copyright (C) 1988 Free Software Foundation, Inc. +;; Keywords: i14n ;; This file is part of GNU Emacs.
--- a/lisp/mail/undigest.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/mail/undigest.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; undigest.el --- digest-cracking support for the RMAIL mail reader +;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 14 Jul 1992 ;; Keywords: mail -;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/play/spook.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/play/spook.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; spook.el --- spook phrase utility for overloading the NSA line eater +;; Copyright (C) 1988 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 05 Dec 1991 ;; Keywords: games -;; Copyright (C) 1988 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/play/studly.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/play/studly.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx) -;; Maintainer: FSF -;; Keywords: games - ;;; This is in the public domain, since it was distributed ;;; by its author without a copyright notice in 1986. +;; Keywords: games + ;;; Code: (defun studlify-region (begin end)
--- a/lisp/play/yow.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/play/yow.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; yow.el --- generate random zippyisms +;; Copyright (C) 1985, 1987 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 14 Jun 1992 ;; Keywords: games -;; Copyright (C) 1985, 1987 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/progmodes/make-mode.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/progmodes/make-mode.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,13 +1,13 @@ ;;; makefile.el --- makefile editing commands for Emacs +;; Copyright (C) 1992 Free Software Foundation, Inc. + ;; Author: Thomas Neumann <tom@smart.bo.open.de> ;; Adapted-By: ESR ;; Keywords: unix, tools ;; $Id: makefile.el,v 1.7.1.17 1992/07/15 20:05:15 tom Exp tom $ -;; Copyright (C) 1992 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/progmodes/modula2.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/progmodes/modula2.el Wed Jul 22 02:58:48 1992 +0000 @@ -2,7 +2,6 @@ ;; Author: Michael Schmidt <michael@pbinfo.UUCP> ;; Tom Perrine <Perrin@LOGICON.ARPA> -;; Last-Modified: 30 May 1992 ;; Keywords: languages ;; The authors distributed this without a copyright notice
--- a/lisp/progmodes/simula.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/progmodes/simula.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,13 +1,13 @@ ;;; simula.el --- SIMULA 87 code editing commands for Emacs +;; Copyright (C) 1992 Free Software Foundation, Inc. + ;; Author: Hans Henrik Eriksen <hhe@ifi.uio.no> ;; Maintainer: simula-mode@ifi.uio.no ;; Version: 0.99 ;; Adapted-By: ESR ;; Keywords: languages -;; Copyright (C) 1992 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/sun-fns.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/sun-fns.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; sun-fns.el --- subroutines of Mouse handling for Sun windows +;; Copyright (C) 1987 Free Software Foundation, Inc. + ;; Author: Jeff Peck <peck@sun.com> -;; Last-Modified: 14 Aug 1987 ;; Keywords: hardware -;; Copyright (C) 1987 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/tabify.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/tabify.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,8 @@ ;;; tabify.el --- tab conversion commands for Emacs +;; Copyright (C) 1985 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 09 May 1991 - -;; Copyright (C) 1985 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.
--- a/lisp/telnet.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/telnet.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,10 +1,9 @@ ;;; telnet.el --- run a telnet session from within an Emacs buffer +;;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc. + ;; Author: William F. Schelter ;; Maintainer: FSF -;; Last-Modified: 16 Mar 1992 - -;;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.
--- a/lisp/term/sun-mouse.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/term/sun-mouse.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,12 +1,11 @@ ;;; sun-mouse.el --- mouse handling for Sun windows +;; Copyright (C) 1987 Free Software Foundation, Inc. + ;; Author: Jeff Peck ;; Maintainer: FSF -;; Last-Modified: 14 Jul 1992 ;; Keywords: hardware -;; Copyright (C) 1987 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/term/sup-mouse.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/term/sup-mouse.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,15 +1,14 @@ ;;; sup-mouse.el --- supdup mouse support for lisp machines +;; Copyright (C) Free Software Foundation 1985, 1986 + ;; Author: Wolfgang Rupprecht ;; Maintainer: FSF ;; Created: 21 Nov 1986 -;; Last-Modified: 16 Mar 1992 ;; Keywords: hardware ;; (from code originally written by John Robinson@bbn for the bitgraph) -;; Copyright (C) Free Software Foundation 1985, 1986 - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/textmodes/spell.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/textmodes/spell.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,8 @@ ;;; spell.el --- spelling correction interface for Emacs. +;; Copyright (C) 1985 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 09 May 1991 - -;; Copyright (C) 1985 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.
--- a/lisp/textmodes/texinfmt.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/textmodes/texinfmt.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,12 +1,11 @@ ;;;; texinfmt.el --- convert Texinfo files to Info files. +;; Copyright (C) 1985, 1986, 1988, 1990 Free Software Foundation, Inc. + ;; Author: Robert J. Chassell <bob@gnu.ai.mit.edu> ;; Version: 2.00 -;; Last-Modified: 14 Dec 1990 ;; Keywords: tex, help -;; Copyright (C) 1985, 1986, 1988, 1990 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/textmodes/texnfo-upd.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/textmodes/texnfo-upd.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,12 +1,11 @@ ;;; texnfo-upd.el --- a utility for updating nodes and menus in Texinfo files. +;;;; Copyright 1989, 1990, 1992 Free Software Foundation + ;; Author: Bob Chassell <bob@gnu.ai.mit.edu> ;; Version: 2.00 -;; Last-Modified: 14 Dec 1990 ;; Keywords: maint, tex, docs -;;;; Copyright 1989, 1990, 1992 Free Software Foundation - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/textmodes/text-mode.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/textmodes/text-mode.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,8 @@ ;;; text-mode.el --- text mode, and its idiosyncratic commands. +;; Copyright (C) 1985, 1992 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 31 Oct 1989 - -;; Copyright (C) 1985, 1992 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.
--- a/lisp/textmodes/underline.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/textmodes/underline.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; underline.el --- insert/remove underlining (done by overstriking) in Emacs. +;; Copyright (C) 1985 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 30 May 1988 ;; Keywords: wp -;; Copyright (C) 1985 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/time.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/time.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,8 @@ ;;; time.el --- display time and load in mode line of Emacs. +;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 09 Oct 1990 - -;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.
--- a/lisp/uncompress.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/uncompress.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,8 @@ ;;; uncompress.el --- auto-decompression hook for visiting .Z files +;; Copyright (C) 1992 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 30 May 1988 - -;; Copyright (C) 1992 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.
--- a/lisp/userlock.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/userlock.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,10 @@ ;;; userlock.el --- handle file access contention between multiple users +;; Copyright (C) 1985, 1986 Free Software Foundation, inc. + ;; Maintainer: FSF -;; Last-Modified: 26 May 1987 ;; Keywords: internal -;; Copyright (C) 1985, 1986 Free Software Foundation, inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/vmsproc.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/vmsproc.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,12 +1,11 @@ ;;; vmsproc.el --- run asynchronous VMS subprocesses under Emacs +;; Copyright (C) 1986 Free Software Foundation, Inc. + ;; Author: Mukesh Prasad ;; Maintainer: FSF -;; Last-Modified: 29 Sep 1986 ;; Keywords: vms -;; Copyright (C) 1986 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/vt100-led.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/vt100-led.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,11 +1,11 @@ ;;; vt100-led.el --- functions for LED control on VT-100 terminals & clones. +;; Copyright (C) 1988 Free Software Foundation, Inc. + ;; Author: Howard Gayle ;; Maintainer: FSF ;; Keywords: hardware -;; Copyright (C) 1988 Free Software Foundation, Inc. - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify
--- a/lisp/window.el Wed Jul 22 02:58:21 1992 +0000 +++ b/lisp/window.el Wed Jul 22 02:58:48 1992 +0000 @@ -1,9 +1,8 @@ ;;; windows.el --- GNU Emacs window commands aside from those written in C. +;;; Copyright (C) 1985, 1989, 1992 Free Software Foundation, Inc. + ;; Maintainer: FSF -;; Last-Modified: 21 Dec 1987 - -;;; Copyright (C) 1985, 1989, 1992 Free Software Foundation, Inc. ;; This file is part of GNU Emacs.