1
0
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:
Stefan Kangas 2021-02-11 15:40:45 +01:00
parent 21ec45c107
commit b3362f7b70

View File

@ -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)