aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-09-23 00:26:10 -0700
committerGlenn Morris2010-09-23 00:26:10 -0700
commitce009d0b262f95249985fe0b898123a0830271b2 (patch)
tree07e5e197dea6be2f294ec3ea5ed4b10688afb2d2
parent7b344dfef79b1fdd068b39036bb34ddeafa96b7d (diff)
downloademacs-ce009d0b262f95249985fe0b898123a0830271b2.tar.gz
emacs-ce009d0b262f95249985fe0b898123a0830271b2.zip
Define ld-script auto-mode-alist entries in the standard place.
* lisp/progmodes/ld-script.el (auto-mode-alist): Move to files.el. * lisp/files.el (auto-mode-alist): Move ld-script entries here, further down the list.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/files.el6
-rw-r--r--lisp/progmodes/ld-script.el22
3 files changed, 15 insertions, 17 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 658c4b18b58..d7665e31969 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12010-09-23 Glenn Morris <rgm@gnu.org> 12010-09-23 Glenn Morris <rgm@gnu.org>
2 2
3 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
4 * files.el (auto-mode-alist): Move ld-script entries here, further down
5 the list.
6
3 * vc/add-log.el: Don't require timezone when compiling. 7 * vc/add-log.el: Don't require timezone when compiling.
4 (timezone-make-date-sortable): Autoload it. 8 (timezone-make-date-sortable): Autoload it.
5 (change-log-sortable-date-at): Don't require timezone. 9 (change-log-sortable-date-at): Don't require timezone.
diff --git a/lisp/files.el b/lisp/files.el
index a7c465ae8c1..33e7d44d528 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2310,6 +2310,12 @@ ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'" . archive-mode)
2310 ("[:/]_emacs\\'" . emacs-lisp-mode) 2310 ("[:/]_emacs\\'" . emacs-lisp-mode)
2311 ("/crontab\\.X*[0-9]+\\'" . shell-script-mode) 2311 ("/crontab\\.X*[0-9]+\\'" . shell-script-mode)
2312 ("\\.ml\\'" . lisp-mode) 2312 ("\\.ml\\'" . lisp-mode)
2313 ;; Linux-2.6.9 uses some different suffix for linker scripts:
2314 ;; "ld", "lds", "lds.S", "lds.in", "ld.script", and "ld.script.balo".
2315 ;; eCos uses "ld" and "ldi". Netbsd uses "ldscript.*".
2316 ("\\.ld[si]?\\'" . ld-script-mode)
2317 ("ld\\.?script\\'" . ld-script-mode)
2318 ("\\.x[bdsru]?[cn]?\\'" . ld-script-mode)
2313 ;; Common Lisp ASDF package system. 2319 ;; Common Lisp ASDF package system.
2314 ("\\.asd\\'" . lisp-mode) 2320 ("\\.asd\\'" . lisp-mode)
2315 ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode) 2321 ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode)
diff --git a/lisp/progmodes/ld-script.el b/lisp/progmodes/ld-script.el
index 3d07ed226b2..318456e9534 100644
--- a/lisp/progmodes/ld-script.el
+++ b/lisp/progmodes/ld-script.el
@@ -1,7 +1,7 @@
1;;; ld-script.el --- GNU linker script editing mode for Emacs 1;;; ld-script.el --- GNU linker script editing mode for Emacs
2 2
3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4;; Free Software Foundation, Inc. 4;; 2010 Free Software Foundation, Inc.
5 5
6;; Author: Masatake YAMATO<jet@gyve.org> 6;; Author: Masatake YAMATO<jet@gyve.org>
7;; Keywords: languages, faces 7;; Keywords: languages, faces
@@ -76,20 +76,20 @@
76(defvar ld-script-keywords 76(defvar ld-script-keywords
77 '( 77 '(
78 ;; 3.4.1 Setting the Entry Point 78 ;; 3.4.1 Setting the Entry Point
79 "ENTRY" 79 "ENTRY"
80 ;; 3.4.2 Commands Dealing with Files 80 ;; 3.4.2 Commands Dealing with Files
81 "INCLUDE" "INPUT" "GROUP" "AS_NEEDED" "OUTPUT" "SEARCH_DIR" "STARTUP" 81 "INCLUDE" "INPUT" "GROUP" "AS_NEEDED" "OUTPUT" "SEARCH_DIR" "STARTUP"
82 ;; 3.4.3 Commands Dealing with Object File Formats 82 ;; 3.4.3 Commands Dealing with Object File Formats
83 "OUTPUT_FORMAT" "TARGET" 83 "OUTPUT_FORMAT" "TARGET"
84 ;; 3.4.3 Other Linker Script Commands 84 ;; 3.4.3 Other Linker Script Commands
85 "ASSERT" "EXTERN" "FORCE_COMMON_ALLOCATION" 85 "ASSERT" "EXTERN" "FORCE_COMMON_ALLOCATION"
86 "INHIBIT_COMMON_ALLOCATION" "NOCROSSREFS" "OUTPUT_ARCH" 86 "INHIBIT_COMMON_ALLOCATION" "NOCROSSREFS" "OUTPUT_ARCH"
87 ;; 3.5.2 PROVIDE 87 ;; 3.5.2 PROVIDE
88 "PROVIDE" 88 "PROVIDE"
89 ;; 3.5.3 PROVIDE_HIDDEN 89 ;; 3.5.3 PROVIDE_HIDDEN
90 "PROVIDE_HIDDEN" 90 "PROVIDE_HIDDEN"
91 ;; 3.6 SECTIONS Command 91 ;; 3.6 SECTIONS Command
92 "SECTIONS" 92 "SECTIONS"
93 ;; 3.6.4.2 Input Section Wildcard Patterns 93 ;; 3.6.4.2 Input Section Wildcard Patterns
94 "SORT" "SORT_BY_NAME" "SORT_BY_ALIGNMENT" 94 "SORT" "SORT_BY_NAME" "SORT_BY_ALIGNMENT"
95 ;; 3.6.4.3 Input Section for Common Symbols 95 ;; 3.6.4.3 Input Section for Common Symbols
@@ -157,18 +157,6 @@
157 cpp-font-lock-keywords) 157 cpp-font-lock-keywords)
158 "Default font-lock-keywords for `ld-script-mode'.") 158 "Default font-lock-keywords for `ld-script-mode'.")
159 159
160;; Linux-2.6.9 uses some different suffix for linker scripts:
161;; "ld", "lds", "lds.S", "lds.in", "ld.script", and "ld.script.balo".
162;; eCos uses "ld" and "ldi".
163;; Netbsd uses "ldscript.*".
164;;;###autoload
165(add-to-list 'auto-mode-alist (purecopy '("\\.ld[si]?\\>" . ld-script-mode)))
166;;;###autoload
167(add-to-list 'auto-mode-alist (purecopy '("ld\\.?script\\>" . ld-script-mode)))
168
169;;;###autoload
170(add-to-list 'auto-mode-alist (purecopy '("\\.x[bdsru]?[cn]?\\'" . ld-script-mode)))
171
172;;;###autoload 160;;;###autoload
173(define-derived-mode ld-script-mode nil "LD-Script" 161(define-derived-mode ld-script-mode nil "LD-Script"
174 "A major mode to edit GNU ld script files" 162 "A major mode to edit GNU ld script files"