]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-mode): Use skeleton-pair-filter-function.
authorRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Sun, 21 May 2006 23:18:19 +0000 (23:18 +0000)
committerRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Sun, 21 May 2006 23:18:19 +0000 (23:18 +0000)
lisp/ChangeLog
lisp/progmodes/sh-script.el

index bf6f64f922747d2c03f0a3d62f5d2dd534ba2da2..37e7617f6ef7f599d867921e90aeba5251ada4b0 100644 (file)
@@ -1,3 +1,42 @@
+2006-05-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
+
+       * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as
+       safe.
+       
+       * progmodes/make-mode.el (makefile-special-targets-list)
+       (makefile-macro-table, makefile-target-table): Mark as risky.
+       (makefile-query-one-target-method): Make this the alias for the
+       following variable.
+       (makefile-query-one-target-method-function): Make this the real
+       name.
+       
+       * textmodes/artist.el (artist-text-renderer): Make this the alias
+       for the following variable.
+       (artist-text-renderer-function): Make this the real name.
+
+       * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
+       the alias for the following variable.
+       (flyspell-generic-check-word-predicate): Make this the real name.
+
+       * textmodes/ispell.el (ispell-format-word): Make this the alias
+       for the following variable.
+       (ispell-format-word-function): Make this the real name.
+       (ispell-message-text-end): Mark as risky.
+
+       * skeleton.el (skeleton-transformation, skeleton-filter)
+       (skeleton-pair-filter): Make these the aliases for the following
+       variables.
+       (skeleton-transformation-function, skeleton-filter-function)
+       (skeleton-pair-filter-function): Make these the real names.
+
+       * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
+       and skeleton-pair-filter-function.
+
+       * textmodes/sgml-mode.el (sgml-transformation): Make this the
+       alias for the following variable.
+       (sgml-transformation-function): Make this the real name.
+       (sgml-tag-alist): Mark as risky.
+
 2006-05-21  Richard Stallman  <rms@gnu.org>
 
        * simple.el (kill-region): Interactively, pass point, then mark.
index 93a30162d91a5cd629a31cbc2ad17b70ccf16f8f..ab3da0504569a5b054ceedd015b919826af1d881 100644 (file)
@@ -1390,7 +1390,7 @@ with your script for an edit-interpret-debug cycle."
   (make-local-variable 'sh-shell-file)
   (make-local-variable 'sh-shell)
   (make-local-variable 'skeleton-pair-alist)
-  (make-local-variable 'skeleton-pair-filter)
+  (make-local-variable 'skeleton-pair-filter-function)
   (make-local-variable 'comint-dynamic-complete-functions)
   (make-local-variable 'comint-prompt-regexp)
   (make-local-variable 'font-lock-defaults)
@@ -1422,7 +1422,7 @@ with your script for an edit-interpret-debug cycle."
          (font-lock-syntactic-face-function
           . sh-font-lock-syntactic-face-function))
        skeleton-pair-alist '((?` _ ?`))
-       skeleton-pair-filter 'sh-quoted-p
+       skeleton-pair-filter-function 'sh-quoted-p
        skeleton-further-elements '((< '(- (min sh-indentation
                                                (current-column)))))
        skeleton-filter-function 'sh-feature