diff options
author | Daniel LaLiberte <liberte@gnu.org> | 1994-04-09 22:27:46 +0000 |
---|---|---|
committer | Daniel LaLiberte <liberte@gnu.org> | 1994-04-09 22:27:46 +0000 |
commit | 2a6a354983b9a6e632c1053c6ad67c80a8b9fd4b (patch) | |
tree | 50c0656dae78cadc27a8fab4d8a45f66bf78a0c2 /lisp/emacs-lisp | |
parent | 45fb3bb841c4fc3706a9c3bff34f3eac0992976a (diff) | |
download | emacs-2a6a354983b9a6e632c1053c6ad67c80a8b9fd4b.tar.gz emacs-2a6a354983b9a6e632c1053c6ad67c80a8b9fd4b.tar.bz2 emacs-2a6a354983b9a6e632c1053c6ad67c80a8b9fd4b.zip |
comment changes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/eval-reg.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/eval-reg.el b/lisp/emacs-lisp/eval-reg.el index e8a464b7d35..0623e845226 100644 --- a/lisp/emacs-lisp/eval-reg.el +++ b/lisp/emacs-lisp/eval-reg.el @@ -1,6 +1,10 @@ ;;; eval-region.el --- Redefine eval-region, and subrs that use it, in Lisp + ;; Copyright (C) 1994 Daniel LaLiberte +;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> +;; Keywords: lisp + ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -34,9 +38,6 @@ ;;; that replaces Emacs Lisp subroutines with Lisp versions of the ;;; same. -;;;; Installation -;;; ============= - ;;; Eval-region may be installed, after loading, by calling: ;;; (elisp-eval-region-install). Installation can be undone with: ;;; (elisp-eval-region-uninstall). @@ -49,6 +50,9 @@ elisp-eval-region-uninstall elisp-eval-region-level with-elisp-eval-region + eval-region + eval-buffer + eval-current-buffer )) '(in-package elisp-eval-region) @@ -208,3 +212,4 @@ This version from eval-region calls `eval-region' on the whole buffer." (provide 'elisp-eval-region) + |