# HG changeset patch # User Martin Stjernholm # Date 1057782503 0 # Node ID 38b96f89712a8a62b53bfba08b2b3df6b11ff6e4 # Parent f1a175ae8909f4448074a1d77e5f51d612020fa6 (auto-mode-alist, interpreter-mode-alist): Added comments about where the CC Mode mode entries have gone. diff -r f1a175ae8909 -r 38b96f89712a lisp/files.el --- a/lisp/files.el Wed Jul 09 20:25:59 2003 +0000 +++ b/lisp/files.el Wed Jul 09 20:28:23 2003 +0000 @@ -1588,6 +1588,10 @@ (ucs-set-table-for-input))) (defvar auto-mode-alist + ;; Note: The entries for the modes defined in cc-mode.el (c-mode, + ;; c++-mode, java-mode and more) are added through autoload + ;; directives in that file. That way is discouraged since it + ;; spreads out the definition of the initial value. (mapc (lambda (elt) (cons (purecopy (car elt)) (cdr elt))) @@ -1726,6 +1730,10 @@ (defvar interpreter-mode-alist + ;; Note: The entries for the modes defined in cc-mode.el (awk-mode + ;; and pike-mode) are added through autoload directives in that + ;; file. That way is discouraged since it spreads out the + ;; definition of the initial value. (mapc (lambda (l) (cons (purecopy (car l)) (cdr l)))