aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog21
-rw-r--r--lisp/progmodes/ld-script.el10
2 files changed, 18 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc4997e00f3..fcb4fac5cc9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
4 (ld-script-mode): Don't set indent-line-function since we don't
5 have one.
6
12006-01-13 Carsten Dominik <dominik@science.uva.nl> 72006-01-13 Carsten Dominik <dominik@science.uva.nl>
2 8
3 * textmodes/org.el: (org-open-file): Use mailcap for selecting an 9 * textmodes/org.el: (org-open-file): Use mailcap for selecting an
@@ -5,17 +11,16 @@
5 (org-file-apps-defaults-gnu): Use mailcap as the default for 11 (org-file-apps-defaults-gnu): Use mailcap as the default for
6 selecting an application on a UNIX system. 12 selecting an application on a UNIX system.
7 (org-agenda-show-tags): New command. 13 (org-agenda-show-tags): New command.
8 (org-table-insert-hline): Keep cursor in current table 14 (org-table-insert-hline): Keep cursor in current table line.
9 line.
10 (org-table-convert): Offset effect of modifying 15 (org-table-convert): Offset effect of modifying
11 `org-table-insert-hline'. 16 `org-table-insert-hline'.
12 (org-format-agenda-item): New optional argument TAG. 17 (org-format-agenda-item): New optional argument TAG.
13 (org-compile-prefix-format): Handle %T format for the tag. 18 (org-compile-prefix-format): Handle %T format for the tag.
14 (org-expand-wide-chars): New function. 19 (org-expand-wide-chars): New function.
15 (org-table-insert-row, org-table-insert-hline): Use 20 (org-table-insert-row, org-table-insert-hline):
16 `org-expand-wide-chars'. 21 Use `org-expand-wide-chars'.
17 (org-open-file): Fixed bug in program launch. 22 (org-open-file): Fix bug in program launch.
18 (org-get-time-of-day): Fixed bug with times before 1am. 23 (org-get-time-of-day): Fix bug with times before 1am.
19 (org-agenda-menu): Addes tags commands. 24 (org-agenda-menu): Addes tags commands.
20 25
212006-01-13 Agustin Martin <agustin.martin@hispalinux.es> 262006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
@@ -27,8 +32,8 @@
27 and flyspell word cache cleared out for the current buffer. 32 and flyspell word cache cleared out for the current buffer.
28 (ispell-change-dictionary): Make sure flyspell word cache is 33 (ispell-change-dictionary): Make sure flyspell word cache is
29 cleared out in all buffers with active flyspell mode when 34 cleared out in all buffers with active flyspell mode when
30 dictionary is globally changed. Call 35 dictionary is globally changed.
31 ispell-internal-change-dictionary after dictionary change. 36 Call ispell-internal-change-dictionary after dictionary change.
32 37
332006-01-13 Eli Zaretskii <eliz@gnu.org> 382006-01-13 Eli Zaretskii <eliz@gnu.org>
34 39
diff --git a/lisp/progmodes/ld-script.el b/lisp/progmodes/ld-script.el
index 31a616fab51..bdb386dc5e9 100644
--- a/lisp/progmodes/ld-script.el
+++ b/lisp/progmodes/ld-script.el
@@ -36,7 +36,7 @@
36 36
37(defvar ld-script-location-counter-face 'ld-script-location-counter) 37(defvar ld-script-location-counter-face 'ld-script-location-counter)
38(defface ld-script-location-counter 38(defface ld-script-location-counter
39 '((t (:weight bold :inherit font-lock-builtin-face))) 39 '((t :weight bold :inherit font-lock-builtin-face))
40 "Face for location counter in GNU ld script." 40 "Face for location counter in GNU ld script."
41 :group 'ld-script) 41 :group 'ld-script)
42 42
@@ -131,18 +131,18 @@
131;; Netbsd uses "ldscript.*". 131;; Netbsd uses "ldscript.*".
132;;;###autoload 132;;;###autoload
133(add-to-list 'auto-mode-alist '("\\.ld[si]?\\>" . ld-script-mode)) 133(add-to-list 'auto-mode-alist '("\\.ld[si]?\\>" . ld-script-mode))
134(add-to-list 'auto-mode-alist '("ld[.]?script\\>" . ld-script-mode)) 134(add-to-list 'auto-mode-alist '("ld\\.?script\\>" . ld-script-mode))
135 135
136;;;###autoload 136;;;###autoload
137(add-to-list 'auto-mode-alist '("\\.x[bdsru]?[cn]?$" . ld-script-mode)) 137(add-to-list 'auto-mode-alist '("\\.x[bdsru]?[cn]?\\'" . ld-script-mode))
138 138
139;;;###autoload 139;;;###autoload
140(define-derived-mode ld-script-mode nil "LD-Script" 140(define-derived-mode ld-script-mode nil "LD-Script"
141 "A major mode to edit GNU ld script files" 141 "A major mode to edit GNU ld script files"
142 (set (make-local-variable 'comment-start) "/* ") 142 (set (make-local-variable 'comment-start) "/* ")
143 (set (make-local-variable 'comment-end) " */") 143 (set (make-local-variable 'comment-end) " */")
144 (set (make-local-variable 'indent-line-function) #'indent-relative) 144 (set (make-local-variable 'font-lock-defaults)
145 (set (make-local-variable 'font-lock-defaults) '(ld-script-font-lock-keywords nil))) 145 '(ld-script-font-lock-keywords nil)))
146 146
147(provide 'ld-script) 147(provide 'ld-script)
148 148