[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r99670: * files.el (interpreter-mode-
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r99670: * files.el (interpreter-mode-alist): Use emacs-lisp-mode for Emacs scripts. |
Date: |
Wed, 17 Mar 2010 21:54:51 -0700 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 99670
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2010-03-17 21:54:51 -0700
message:
* files.el (interpreter-mode-alist): Use emacs-lisp-mode for Emacs scripts.
modified:
lisp/ChangeLog
lisp/files.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-03-16 16:45:07 +0000
+++ b/lisp/ChangeLog 2010-03-18 04:54:51 +0000
@@ -1,3 +1,8 @@
+2010-03-18 Glenn Morris <address@hidden>
+
+ * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
+ Emacs scripts.
+
2010-03-16 Michael Albinus <address@hidden>
* net/secrets.el (secrets-enabled): New variable. Use it instead
=== modified file 'lisp/files.el'
--- a/lisp/files.el 2010-03-12 08:04:54 +0000
+++ b/lisp/files.el 2010-03-18 04:54:51 +0000
@@ -1,8 +1,8 @@
;;; files.el --- file input and output commands for Emacs
;; Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994, 1995, 1996,
-;; 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;; 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
;; Maintainer: FSF
@@ -2404,7 +2404,8 @@
("pg" . text-mode)
("make" . makefile-gmake-mode) ; Debian uses this
("guile" . scheme-mode)
- ("clisp" . lisp-mode)))
+ ("clisp" . lisp-mode)
+ ("emacs" . emacs-lisp-mode)))
"Alist mapping interpreter names to major modes.
This is used for files whose first lines match `auto-mode-interpreter-regexp'.
Each element looks like (INTERPRETER . MODE).
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r99670: * files.el (interpreter-mode-alist): Use emacs-lisp-mode for Emacs scripts.,
Glenn Morris <=