Skip to content

Commit

Permalink
Recognize qualified names in -find-imported-class
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhw committed Mar 4, 2009
1 parent cfc73d8 commit dab48f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/lisp/malabar-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@
(let ((import-tag (find classname tags
:key #'semantic-tag-name
:test #'equal)))
(or (and import-tag
(or (and (> (count ?. classname) 1)
classname)
(and import-tag
(semantic-tag-name import-tag))
(malabar-find-imported-class-from-wildcard-imports classname buffer)
(find (concat "java.lang." classname)
Expand Down

0 comments on commit dab48f6

Please sign in to comment.