comparison lisp/emacs-lisp/lisp-mode.el @ 71626:fbe329a11cee

(emacs-lisp-mode-map): Use eval-buffer.
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Wed, 05 Jul 2006 07:47:41 +0000
parents 169719af1b5e
children 45c72f1f789d 138ce2701550
comparison
equal deleted inserted replaced
71625:22433275348d 71626:fbe329a11cee
289 (define-key map [emacs-byte-compile-and-load] 289 (define-key map [emacs-byte-compile-and-load]
290 '("Byte-compile And Load" . emacs-lisp-byte-compile-and-load)) 290 '("Byte-compile And Load" . emacs-lisp-byte-compile-and-load))
291 (define-key map [byte-compile] 291 (define-key map [byte-compile]
292 '("Byte-compile This File" . emacs-lisp-byte-compile)) 292 '("Byte-compile This File" . emacs-lisp-byte-compile))
293 (define-key map [separator-eval] '("--")) 293 (define-key map [separator-eval] '("--"))
294 (define-key map [eval-buffer] '("Evaluate Buffer" . eval-current-buffer)) 294 (define-key map [eval-buffer] '("Evaluate Buffer" . eval-buffer))
295 (define-key map [eval-region] '("Evaluate Region" . eval-region)) 295 (define-key map [eval-region] '("Evaluate Region" . eval-region))
296 (define-key map [eval-sexp] '("Evaluate Last S-expression" . eval-last-sexp)) 296 (define-key map [eval-sexp] '("Evaluate Last S-expression" . eval-last-sexp))
297 (define-key map [separator-format] '("--")) 297 (define-key map [separator-format] '("--"))
298 (define-key map [comment-region] '("Comment Out Region" . comment-region)) 298 (define-key map [comment-region] '("Comment Out Region" . comment-region))
299 (define-key map [indent-region] '("Indent Region" . indent-region)) 299 (define-key map [indent-region] '("Indent Region" . indent-region))