mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-05-01 02:31:23 -07:00
; Fix lexical-binding conversion of semantic/bovine/gcc.el
* lisp/cedet/semantic/bovine/gcc.el (semantic-gcc-get-include-paths): Fix sorting and comparison after previous lexical-binding conversion.
This commit is contained in:
parent
21ec45c107
commit
b3362f7b70
1 changed files with 3 additions and 2 deletions
|
|
@ -89,8 +89,9 @@ to give to the program."
|
|||
(let ((path (substring line 1)))
|
||||
(when (and (file-accessible-directory-p path)
|
||||
(file-name-absolute-p path))
|
||||
(cl-pushnew (expand-file-name path) inc-path))))))))
|
||||
inc-path))
|
||||
(cl-pushnew (expand-file-name path) inc-path
|
||||
:test #'equal))))))))
|
||||
(nreverse inc-path)))
|
||||
|
||||
|
||||
(defun semantic-cpp-defs (str)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue