comparison lisp/emacs-lisp/lisp-mode.el @ 93120:ade33d67202c

(emacs-lisp-mode-map): Add menu entry for disassemble.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 21 Mar 2008 06:08:21 +0000
parents a155e008f7c7
children 641cbad340a8
comparison
equal deleted inserted replaced
93119:3546cd0119d2 93120:ade33d67202c
313 (define-key menu-map [edebug-defun] 313 (define-key menu-map [edebug-defun]
314 '(menu-item "Instrument Function for Debugging" edebug-defun 314 '(menu-item "Instrument Function for Debugging" edebug-defun
315 :help "Evaluate the top level form point is in, stepping through with Edebug" 315 :help "Evaluate the top level form point is in, stepping through with Edebug"
316 :keys "C-u C-M-x")) 316 :keys "C-u C-M-x"))
317 (define-key menu-map [separator-byte] '("--")) 317 (define-key menu-map [separator-byte] '("--"))
318 (define-key menu-map [disas]
319 '(menu-item "Disassemble byte compiled object" disassemble
320 :help "Print disassembled code for OBJECT in a buffer"))
318 (define-key menu-map [byte-recompile] 321 (define-key menu-map [byte-recompile]
319 '(menu-item "Byte-recompile Directory..." byte-recompile-directory 322 '(menu-item "Byte-recompile Directory..." byte-recompile-directory
320 :help "Recompile every `.el' file in DIRECTORY that needs recompilation")) 323 :help "Recompile every `.el' file in DIRECTORY that needs recompilation"))
321 (define-key menu-map [emacs-byte-compile-and-load] 324 (define-key menu-map [emacs-byte-compile-and-load]
322 '(menu-item "Byte-compile And Load" emacs-lisp-byte-compile-and-load 325 '(menu-item "Byte-compile And Load" emacs-lisp-byte-compile-and-load