2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
+ * progmodes/cc-mode.el (auto-mode-alist): Add .i and .ii files.
+
* Makefile.in (ELCFILES): Add term/common-win.elc.
* vc-dir.el (vc-dir-search, vc-dir-isearch)
;;;###autoload (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode))
;;;###autoload (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode))
+;; Preprocessed files generated by C and C++ compilers.
+;;;###autoload (add-to-list 'auto-mode-alist '("\\.i\\'" . c-mode))
+;;;###autoload (add-to-list 'auto-mode-alist '("\\.ii\\'" . c++-mode))
+
+
;;;###autoload
(defun c-mode ()
"Major mode for editing K&R and ANSI C code.