]> git.eshelyaron.com Git - emacs.git/commitdiff
(emacs-lisp-mode-map): Add menu entries for eldoc and ielm.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 17 Mar 2008 16:19:05 +0000 (16:19 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 17 Mar 2008 16:19:05 +0000 (16:19 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index 92adbc5413a69ad302bc2e1f14afc1bd1d1b8935..754d2d62d2388fba7fe9c26320d6c4fd45e81564 100644 (file)
@@ -1,3 +1,8 @@
+2008-03-17  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
+       for eldoc and ielm.
+
 2008-03-17  Glenn Morris  <rgm@gnu.org>
 
        * calendar/cal-x.el (diary-frame-parameters)
index 0311b300d7f5d7a5c44df3a1580289467896a11c..3381116189ff8069b5cdb558ddff87ca8c41e841 100644 (file)
     (define-key map "\e\C-x" 'eval-defun)
     (define-key map "\e\C-q" 'indent-pp-sexp)
     (define-key map [menu-bar emacs-lisp] (cons "Emacs-Lisp" menu-map))
+    (define-key menu-map [eldoc]
+      '(menu-item "Auto-Display Documentation Strings" eldoc-mode
+                 :button (:toggle . eldoc-mode)
+                 :help "Display the documentation string for the item under cursor"))
+    (define-key menu-map [checkdoc]
+      '(menu-item "Check Documentation Strings" checkdoc
+                 :help "Check documentation strings for style requirements"))
     (define-key menu-map [profiling] (cons "Profiling" prof-map))
     (define-key prof-map [prof-restall]
       '(menu-item "Remove Instrumentation for All Functions" elp-restore-all
     (define-key prof-map [prof-func]
       '(menu-item "Instrument Function" elp-instrument-function
                  :help "Instrument a function for profiling"))
-    (define-key menu-map [checkdoc]
-      '(menu-item "Check Documentation Strings" checkdock
-                 :help "Check documentation strings for style requirements"))
     (define-key menu-map [edebug-defun]
       '(menu-item "Instrument Function for Debugging" edebug-defun
                  :help "Evaluate the top level form point is in, stepping through with Edebug"
       '(menu-item "Byte-compile This File" emacs-lisp-byte-compile
                  :help "Byte compile the file containing the current buffer"))
     (define-key menu-map [separator-eval] '("--"))
+    (define-key menu-map [ielm]
+      '(menu-item "Interactive Expression Evaluation" ielm
+                 :help "Interactively evaluate Emacs Lisp expressions"))
     (define-key menu-map [eval-buffer]
       '(menu-item "Evaluate Buffer" eval-buffer
                  :help "Execute the current buffer as Lisp code"))