|
| From: | Stefan Monnier |
| Subject: | Re: /lib/cpp not found in c-mode |
| Date: | Thu, 05 May 2005 10:17:14 -0400 |
| User-agent: | Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) |
> I've now changed the condition to:
> ((memq system-type '(darwin berkeley-unix)) "gcc -E -C -")
Testing system-type strikes me as wrong (as usual). Since it's the
penultimate entry and the last one says "/lib/cpp" we should probably just
do something more like:
((not (file-executable-p "/lib/cpp")) "gcc -E -C -")
-- Stefan
| [Prev in Thread] | Current Thread | [Next in Thread] |