summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2012-10-12 16:07:58 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2012-10-12 16:07:58 -0400
commitbd0ffffd5a90e25d32708dd4fec29578648e1fad (patch)
tree1200f493905572c6463e5efcc39dd1f279328065 /lisp/emacs-lisp
parent57e5e467de9748256c96c5f3bda3e5dcb766e896 (diff)
downloademacs-bd0ffffd5a90e25d32708dd4fec29578648e1fad.tar.gz
* lisp/emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/eieio.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el
index 7e64b42d9e4..9bbb149177f 100644
--- a/lisp/emacs-lisp/eieio.el
+++ b/lisp/emacs-lisp/eieio.el
@@ -2750,7 +2750,7 @@ This method signals `no-next-method' by default. Override this
method to not throw an error, and its return value becomes the
return value of `call-next-method'."
(signal 'no-next-method (list (object-name object) args))
-)
+ )
(defgeneric clone (obj &rest params)
"Make a copy of OBJ, and then supply PARAMS.
@@ -3050,7 +3050,7 @@ Optional argument NOESCAPE is passed to `prin1-to-string' when appropriate."
;;; Interfacing with imenu in emacs lisp mode
;; (Only if the expression is defined)
;;
-(if (eval-when-compile (boundp 'list-imenu-generic-expression))
+(if (eval-when-compile (boundp 'lisp-imenu-generic-expression))
(progn
(defun eieio-update-lisp-imenu-expression ()