diff options
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 24ba4459246..b4686ac42a4 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1,12 +1,16 @@ ;;; comint.el --- general command interpreter in a window stuff +;; Maintainer: Olin Shivers <shivers@cs.cmu.edu> +;; Last-Modified: 16 Jul 1992 +;; Version: 2.03 + ;;; Copyright Olin Shivers (1988). ;;; 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 1, or (at your option) +;;; 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, @@ -18,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. +;;; Commentary: + ;;; The changelog is at the end of this file. ;;; Please send me bug reports, bug fixes, and extensions, so that I can @@ -57,8 +63,6 @@ ;;; background, dbx, gdb, kermit, prolog, telnet) to use comint-mode ;;; instead of shell-mode, see the notes at the end of this file. -(defconst comint-version "2.03") - ;;; Brief Command Documentation: ;;;============================================================================ @@ -101,6 +105,10 @@ ;;; comint-mode-hook is the comint mode hook. Basically for your keybindings. ;;; comint-load-hook is run after loading in this package. +;;; Code: + +(defconst comint-version "2.03") + ;;; Buffer Local Variables: ;;;============================================================================ |