MS-DOS, since cpp might not be available.
2001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
+ * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
+ MS-DOS, since cpp might not be available.
+
* menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>: Mention
"yank" in the help-echo text. Suggested by Pavel Jan\e,Bm\e(Bk
<Pavel@Janik.cz>.
:group 'c-macro)
(defcustom c-macro-preprocessor
- ;; Cannot rely on standard directory on MS-DOS to find CPP.
- (cond ((eq system-type 'ms-dos) "cpp -C")
+ ;; Cannot rely on standard directory on MS-DOS to find CPP. In
+ ;; fact, cannot rely on having cpp.exe, either, in latest GCC
+ ;; versions.
+ (cond ((eq system-type 'ms-dos) "gcc -E -C -o - -")
;; Solaris has it in an unusual place.
((and (string-match "^[^-]*-[^-]*-\\(solaris\\|sunos5\\)"
system-configuration)