Index: lisp/progmodes/flymake.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/progmodes/flymake.el,v retrieving revision 1.41 diff -c -r1.41 flymake.el *** lisp/progmodes/flymake.el 16 Feb 2006 11:40:51 -0000 1.41 --- lisp/progmodes/flymake.el 15 Oct 2006 09:17:25 -0000 *************** *** 1021,1027 **** (progn (flymake-get-project-include-dirs-from-cache basedir)) ;;else ! (let* ((command-line (concat "make -C\"" basedir "\" DUMPVARS=INCLUDE_DIRS dumpvars")) (output (shell-command-to-string command-line)) (lines (flymake-split-string output "\n")) (count (length lines)) --- 1021,1029 ---- (progn (flymake-get-project-include-dirs-from-cache basedir)) ;;else ! (let* ((command-line (concat "make -C " ! (shell-quote-argument basedir) ! " DUMPVARS=INCLUDE_DIRS dumpvars")) (output (shell-command-to-string command-line)) (lines (flymake-split-string output "\n")) (count (length lines))