Skip to content

Commit

Permalink
Fix semantic to use new completion
Browse files Browse the repository at this point in the history
  • Loading branch information
xendk committed Apr 15, 2017
1 parent dd3c732 commit 71427ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ede-php-autoload-semanticdb.el
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ Optional argument TAGS is a list of tags to search.
Returns a table of all matching tags."
(if (ede-php-autoload-current-project)
(mapcar #'ede-php-autoload-semanticdb--wrap-suggestion-in-tag
(ede-php-autoload-complete-type-name (ede-php-autoload-current-project) prefix))))
(cl-loop for completion in (ede-php-autoload-complete-type-name (ede-php-autoload-current-project) prefix)
collect (cdr (assoc :name completion))))))

(provide 'ede-php-autoload-semanticdb)

Expand Down

0 comments on commit 71427ec

Please sign in to comment.