2010-09-23 Glenn Morris <rgm@gnu.org>
+ * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
+
* progmodes/ld-script.el (auto-mode-alist): Move to files.el.
* files.el (auto-mode-alist): Move ld-script entries here, further down
the list.
;; eCos uses "ld" and "ldi". Netbsd uses "ldscript.*".
("\\.ld[si]?\\'" . ld-script-mode)
("ld\\.?script\\'" . ld-script-mode)
+ ;; .xs is also used for ld scripts, but seems to be more commonly
+ ;; associated with Perl .xs files (C with Perl bindings). (Bug#7071)
+ ("\\.xs\\'" . c-mode)
("\\.x[bdsru]?[cn]?\\'" . ld-script-mode)
;; Common Lisp ASDF package system.
("\\.asd\\'" . lisp-mode)