summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl-generic.el
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2016-05-10 01:15:12 +0300
committerDmitry Gutov <dgutov@yandex.ru>2016-05-10 01:16:06 +0300
commit963541a6540c40559645c312cea7f35c3c649556 (patch)
tree997649cb963434d593363f361915453c1dec0684 /lisp/emacs-lisp/cl-generic.el
parent3c581d56ad36f744d6657b46ca6f1b4f23680aed (diff)
downloademacs-963541a6540c40559645c312cea7f35c3c649556.tar.gz
emacs-963541a6540c40559645c312cea7f35c3c649556.tar.bz2
emacs-963541a6540c40559645c312cea7f35c3c649556.zip
Publicize cl--generic-all-functions
* lisp/emacs-lisp/cl-generic.el (cl-generic-all-functions): Rename from cl--generic-all-functions. Update both callers. * lisp/cedet/semantic/db-el.el (semanticdb-find-tags-external-children-of-type-method): And use it here (bug#23042).
Diffstat (limited to 'lisp/emacs-lisp/cl-generic.el')
-rw-r--r--lisp/emacs-lisp/cl-generic.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-generic.el b/lisp/emacs-lisp/cl-generic.el
index 7ad9f307f93..37edf45df38 100644
--- a/lisp/emacs-lisp/cl-generic.el
+++ b/lisp/emacs-lisp/cl-generic.el
@@ -937,7 +937,7 @@ MET-NAME is a cons (SYMBOL . SPECIALIZERS)."
(setq applies t)))
applies))
-(defun cl--generic-all-functions (&optional type)
+(defun cl-generic-all-functions (&optional type)
"Return a list of all generic functions.
Optional TYPE argument returns only those functions that contain
methods for TYPE."