1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

* speedbar.el (speedbar-generic-list-tag-p): Allow special

elements from imenu.
This commit is contained in:
Leo Liu 2014-08-13 11:21:43 +08:00
parent 2b0cb8b177
commit e131e4ffae
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2014-08-13 Leo Liu <sdl.web@gmail.com>
* speedbar.el (speedbar-generic-list-tag-p): Allow special
elements from imenu.
2014-08-11 Glenn Morris <rgm@gnu.org>
* subr.el (with-output-to-temp-buffer): Doc fix; from elisp manual.

View File

@ -2123,9 +2123,10 @@ cell of the form ( 'DIRLIST . 'FILELIST )."
;; in order to make it look nice.
;;
;; A generic list is of the form:
;; ( ("name" . marker-or-number) <-- one tag at this level
;; ("name" ("name" . mon) ("name" . mon) ) <-- one group of tags
;; ("name" mon ("name" . mon) ) <-- group w/ a position and tags
;; ( ("name" . marker-or-number) <-- one tag at this level
;; ("name" marker-or-number goto-fun . args) <-- one tag at this level
;; ("name" ("name" . mon) ("name" . mon) ) <-- one group of tags
;; ("name" mon ("name" . mon) ) <-- group w/ a position and tags
(defun speedbar-generic-list-group-p (sublst)
"Non-nil if SUBLST is a group.
Groups may optionally contain a position."
@ -2156,6 +2157,8 @@ Groups may optionally contain a position."
(and (stringp (car-safe sublst))
(or (and (number-or-marker-p (cdr-safe sublst))
(not (cdr-safe (cdr-safe sublst))))
(ignore-errors (and (number-or-marker-p (nth 1 sublst))
(functionp (nth 2 sublst))))
;; For semantic/bovine items, this is needed
(symbolp (car-safe (cdr-safe sublst))))
))