]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-mode-alist): Use \' rather than $.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 13 Jan 2006 17:20:52 +0000 (17:20 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 13 Jan 2006 17:20:52 +0000 (17:20 +0000)
(ld-script-mode): Don't set indent-line-function since we don't have one.

lisp/ChangeLog
lisp/progmodes/ld-script.el

index dc4997e00f34b7be0a53e2cab24653343e4befcd..fcb4fac5cc9e1b0e0a6badb67bd5cad2ab79483d 100644 (file)
@@ -1,3 +1,9 @@
+2006-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
+       (ld-script-mode): Don't set indent-line-function since we don't
+       have one.
+
 2006-01-13  Carsten Dominik  <dominik@science.uva.nl>
 
        * textmodes/org.el: (org-open-file): Use mailcap for selecting an
        (org-file-apps-defaults-gnu): Use mailcap as the default for
        selecting an application on a UNIX system.
        (org-agenda-show-tags): New command.
-       (org-table-insert-hline): Keep cursor in current table
-       line.
+       (org-table-insert-hline): Keep cursor in current table line.
        (org-table-convert): Offset effect of modifying
        `org-table-insert-hline'.
        (org-format-agenda-item): New optional argument TAG.
        (org-compile-prefix-format): Handle %T format for the tag.
        (org-expand-wide-chars): New function.
-       (org-table-insert-row, org-table-insert-hline): Use
-       `org-expand-wide-chars'.
-       (org-open-file): Fixed bug in program launch.
-       (org-get-time-of-day): Fixed bug with times before 1am.
+       (org-table-insert-row, org-table-insert-hline):
+       Use `org-expand-wide-chars'.
+       (org-open-file): Fix bug in program launch.
+       (org-get-time-of-day): Fix bug with times before 1am.
        (org-agenda-menu): Addes tags commands.
 
 2006-01-13  Agustin Martin  <agustin.martin@hispalinux.es>
@@ -27,8 +32,8 @@
        and flyspell word cache cleared out for the current buffer.
        (ispell-change-dictionary): Make sure flyspell word cache is
        cleared out in all buffers with active flyspell mode when
-       dictionary is globally changed.  Call
-       ispell-internal-change-dictionary after dictionary change.
+       dictionary is globally changed.
+       Call ispell-internal-change-dictionary after dictionary change.
 
 2006-01-13  Eli Zaretskii  <eliz@gnu.org>
 
index 31a616fab516d4cb241dff4f210552dfb761f020..bdb386dc5e96717f3011f0d8208a6bb5821b84bd 100644 (file)
@@ -36,7 +36,7 @@
 
 (defvar ld-script-location-counter-face 'ld-script-location-counter)
 (defface ld-script-location-counter
-  '((t (:weight bold :inherit font-lock-builtin-face)))
+  '((t :weight bold :inherit font-lock-builtin-face))
   "Face for location counter in GNU ld script."
   :group 'ld-script)
 
 ;; Netbsd uses "ldscript.*".
 ;;;###autoload
 (add-to-list 'auto-mode-alist '("\\.ld[si]?\\>" . ld-script-mode))
-(add-to-list 'auto-mode-alist '("ld[.]?script\\>" . ld-script-mode))
+(add-to-list 'auto-mode-alist '("ld\\.?script\\>" . ld-script-mode))
 
 ;;;###autoload
-(add-to-list 'auto-mode-alist '("\\.x[bdsru]?[cn]?$" . ld-script-mode))
+(add-to-list 'auto-mode-alist '("\\.x[bdsru]?[cn]?\\'" . ld-script-mode))
 
 ;;;###autoload
 (define-derived-mode ld-script-mode nil "LD-Script"
    "A major mode to edit GNU ld script files"
   (set (make-local-variable 'comment-start) "/* ")
   (set (make-local-variable 'comment-end)   " */")
-  (set (make-local-variable 'indent-line-function) #'indent-relative)
-  (set (make-local-variable 'font-lock-defaults) '(ld-script-font-lock-keywords nil)))
+  (set (make-local-variable 'font-lock-defaults)
+       '(ld-script-font-lock-keywords nil)))
 
 (provide 'ld-script)