Index: emacs/lisp/progmodes/cc-mode.el
diff -c emacs/lisp/progmodes/cc-mode.el:1.35
emacs/lisp/progmodes/cc-mode.el:1.36
*** emacs/lisp/progmodes/cc-mode.el:1.35 Fri Apr 29 18:23:33 2005
--- emacs/lisp/progmodes/cc-mode.el Fri Apr 29 23:47:30 2005
***************
*** 649,657 ****
(with-output-to-string
(with-current-buffer standard-output
(call-process cc-mode-cpp-program
! file t nil "-dM"))))
(define-list (split-string output "\n" t))
(name))
(dolist (define define-list)
(setq name (nth 1 (split-string define "[( ]")))
(push (cons name define) cc-define-alist))))
--- 649,658 ----
(with-output-to-string
(with-current-buffer standard-output
(call-process cc-mode-cpp-program
! (if (file-exists-p file) file nil) t nil "-dM"))))
(define-list (split-string output "\n" t))
(name))
+ (setq cc-define-alist nil)
(dolist (define define-list)
(setq name (nth 1 (split-string define "[( ]")))
(push (cons name define) cc-define-alist))))
***************
*** 686,691 ****
--- 687,693 ----
(easy-menu-add c-c-menu)
(cc-imenu-init cc-imenu-c-generic-expression)
(cc-create-define-alist)
+ (add-hook 'after-save-hook 'cc-create-define-alist nil t)
(run-mode-hooks 'c-mode-common-hook 'c-mode-hook)
(c-update-modeline))
_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs