From: Glenn Morris Date: Wed, 30 Sep 2009 02:26:12 +0000 (+0000) Subject: (semantic-gcc-setup): Replace runtime use of CL function `remove-if-not'. X-Git-Tag: emacs-pretest-23.1.90~1060 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9280709b47b946d3afb77479ef73f56dc9e4085a;p=emacs.git (semantic-gcc-setup): Replace runtime use of CL function `remove-if-not'. --- diff --git a/lisp/cedet/semantic/bovine/gcc.el b/lisp/cedet/semantic/bovine/gcc.el index 49c65366c2a..5466546b61c 100644 --- a/lisp/cedet/semantic/bovine/gcc.el +++ b/lisp/cedet/semantic/bovine/gcc.el @@ -171,15 +171,18 @@ It should also include other symbols GCC was compiled with.") (gcc-include-c++-ver (expand-file-name ver gcc-include-c++)) (gcc-include-c++-ver-host (expand-file-name host gcc-include-c++-ver))) (setq c-include-path - (remove-if-not 'file-accessible-directory-p - (list "/usr/include" gcc-include))) + ;; Replace cl-function remove-if-not. + (delq nil (mapcar (lambda (d) + (if (file-accessible-directory-p d) d)) + (list "/usr/include" gcc-include)))) (setq c++-include-path - (remove-if-not 'file-accessible-directory-p - (list "/usr/include" - gcc-include - gcc-include-c++ - gcc-include-c++-ver - gcc-include-c++-ver-host))))) + (delq nil (mapcar (lambda (d) + (if (file-accessible-directory-p d) d)) + (list "/usr/include" + gcc-include + gcc-include-c++ + gcc-include-c++-ver + gcc-include-c++-ver-host)))))) ;;; Fix-me: I think this part might have been a misunderstanding, but I am not sure. ;; If this option is specified, try it both with and without prefix, and with and without host