mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00: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
@ -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…
Reference in New Issue
Block a user