diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 17:17:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 17:17:05 +0000 |
commit | 76550a57f934a39f067da196e94b10797efca240 (patch) | |
tree | 91d58a3fc4388cc3bf00987c0cca050b6bd20baf /lisp/delsel.el | |
parent | aae56ea7ca8c74e7bb5595b828851aaa9f947792 (diff) |
Add standard library headers.
Diffstat (limited to 'lisp/delsel.el')
-rw-r--r-- | lisp/delsel.el | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/lisp/delsel.el b/lisp/delsel.el index 29489be804..0c07d0783d 100644 --- a/lisp/delsel.el +++ b/lisp/delsel.el @@ -1,7 +1,10 @@ -;;; Pending delete selection +;;; pending-del.el --- pending delete selection + ;;; Copyright (C) 1992 Free Software Foundation, Inc. -;;; Created: 14 Jul 92, Matthieu Devin <devin@lucid.com> -;;; Last change 18-Feb-93, devin. + +;; Author: Matthieu Devin <devin@lucid.com> +;; Created: 14 Jul 92 +;; Last change 18-Feb-93, devin. ;;; This file is part of GNU Emacs. @@ -19,11 +22,14 @@ ;;; 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 files makes the active region be pending delete, meaning that +;;; This file makes the active region be pending delete, meaning that ;;; text inserted while the region is active will replace the region contents. ;;; This is a popular behavior of personal computers text editors. +;;; Code: + (defvar pending-delete-mode t "*Non-nil means Pending Delete mode is enabled. In Pending Delete mode, when a region is highlighted, @@ -110,4 +116,4 @@ In Transient Mark mode, if the mark is active, just deactivate it." (provide 'pending-del) -;; End of pending-del.el. +;;; pending-del.el ends here |