]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-eval-defun): Renamed from lisp-send-defun.
authorRichard M. Stallman <rms@gnu.org>
Mon, 22 Nov 1993 00:41:35 +0000 (00:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 22 Nov 1993 00:41:35 +0000 (00:41 +0000)
(lisp-mode-map): Use new name lisp-eval-defun.
Move run-lisp to C-x C-z.

lisp/emacs-lisp/lisp-mode.el

index f060563f17570947effe4473ece7d02f3b918e63..590de3d05230addd9b17cc853ecdb0113804bbe7 100644 (file)
@@ -151,8 +151,8 @@ All commands in `shared-lisp-mode-map' are inherited by this map.")
     ()
   (setq lisp-mode-map
        (nconc (make-sparse-keymap) shared-lisp-mode-map))
-  (define-key lisp-mode-map "\e\C-x" 'lisp-send-defun)
-  (define-key lisp-mode-map "\C-c\C-l" 'run-lisp))
+  (define-key lisp-mode-map "\e\C-x" 'lisp-eval-defun)
+  (define-key lisp-mode-map "\C-c\C-z" 'run-lisp))
 
 (defun lisp-mode ()
   "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
@@ -175,7 +175,7 @@ if that value is non-nil."
   (run-hooks 'lisp-mode-hook))
 
 ;; This will do unless shell.el is loaded.
-(defun lisp-send-defun nil
+(defun lisp-eval-defun nil
   "Send the current defun to the Lisp process made by \\[run-lisp]."
   (interactive)
   (error "Process lisp does not exist"))