branch: elpa/inf-clojure commit 1c9a30125aa4ed1f358be3f90c67da1c4c0017e9 Author: Bozhidar Batsov <bozhi...@tradeo.com> Commit: Bozhidar Batsov <bozhi...@tradeo.com>
Fix some incorrect command references --- inf-clojure.el | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/inf-clojure.el b/inf-clojure.el index 9919ffd..4b85cef 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -72,9 +72,7 @@ mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword ["Load File..." clojure-load-file t] "--" ["Show Arglist..." clojure-show-arglist t] - ["Describe Symbol..." clojure-describe-sym t] - ["Show Documentation for Function..." clojure-show-function-documentation t] - ["Show Documentation for Variable..." clojure-show-variable-documentation t])) + ["Show Documentation for Var..." clojure-show-var-documentation t])) ;;; These commands augment Clojure mode, so you can process Clojure code in ;;; the source files. @@ -87,9 +85,7 @@ mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword (define-key clojure-mode-map "\C-c\C-z" 'switch-to-clojure) (define-key clojure-mode-map "\C-c\C-l" 'clojure-load-file) (define-key clojure-mode-map "\C-c\C-a" 'clojure-show-arglist) -(define-key clojure-mode-map "\C-c\C-d" 'clojure-describe-sym) -(define-key clojure-mode-map "\C-c\C-f" 'clojure-show-function-documentation) -(define-key clojure-mode-map "\C-c\C-v" 'clojure-show-variable-documentation) +(define-key clojure-mode-map "\C-c\C-v" 'clojure-show-var-documentation) (defcustom inf-clojure-program "lein repl" "Program name for invoking an inferior Clojure in Inferior Clojure mode."