aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2005-05-01 22:52:29 +0000
committerNick Roberts2005-05-01 22:52:29 +0000
commitfbc6be52eb6a44fa36b9592de9f0717bf4977ad3 (patch)
treefad84788be426c4f7af0d4c9b677cedf0ae421df
parentb161ea4eea382793ad019735ce6c6c7b3f6f8179 (diff)
downloademacs-fbc6be52eb6a44fa36b9592de9f0717bf4977ad3.tar.gz
emacs-fbc6be52eb6a44fa36b9592de9f0717bf4977ad3.zip
(cc-mode-cpp-program): Change to "gcc -E".
-rw-r--r--lisp/progmodes/cc-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el
index 2861e683409..fdb308b7dc9 100644
--- a/lisp/progmodes/cc-mode.el
+++ b/lisp/progmodes/cc-mode.el
@@ -640,7 +640,7 @@ Note that the style variables are always made local to the buffer."
640;;;###autoload (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode)) 640;;;###autoload (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode))
641 641
642(defvar cc-define-alist nil "Alist of #define directives for GUD tooltips.") 642(defvar cc-define-alist nil "Alist of #define directives for GUD tooltips.")
643(defvar cc-mode-cpp-program "/lib/cpp" 643(defvar cc-mode-cpp-program "gcc -E"
644 "*The program name for the CPP pre-processor.") 644 "*The program name for the CPP pre-processor.")
645 645
646(defun cc-create-define-alist () 646(defun cc-create-define-alist ()