aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Winkler2006-05-21 23:18:19 +0000
committerRoland Winkler2006-05-21 23:18:19 +0000
commit21225d8f7eae2d0b2fd59099695afdaef1ceb866 (patch)
treebaa42c3b99b46da18db74dfa212a8f51ec0a51b7
parent62fda6d68a3983e8643a026469db8c5424de5c08 (diff)
downloademacs-21225d8f7eae2d0b2fd59099695afdaef1ceb866.tar.gz
emacs-21225d8f7eae2d0b2fd59099695afdaef1ceb866.zip
(sh-mode): Use skeleton-pair-filter-function.
-rw-r--r--lisp/ChangeLog39
-rw-r--r--lisp/progmodes/sh-script.el4
2 files changed, 41 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bf6f64f9227..37e7617f6ef 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,42 @@
12006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2
3 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as
4 safe.
5
6 * progmodes/make-mode.el (makefile-special-targets-list)
7 (makefile-macro-table, makefile-target-table): Mark as risky.
8 (makefile-query-one-target-method): Make this the alias for the
9 following variable.
10 (makefile-query-one-target-method-function): Make this the real
11 name.
12
13 * textmodes/artist.el (artist-text-renderer): Make this the alias
14 for the following variable.
15 (artist-text-renderer-function): Make this the real name.
16
17 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
18 the alias for the following variable.
19 (flyspell-generic-check-word-predicate): Make this the real name.
20
21 * textmodes/ispell.el (ispell-format-word): Make this the alias
22 for the following variable.
23 (ispell-format-word-function): Make this the real name.
24 (ispell-message-text-end): Mark as risky.
25
26 * skeleton.el (skeleton-transformation, skeleton-filter)
27 (skeleton-pair-filter): Make these the aliases for the following
28 variables.
29 (skeleton-transformation-function, skeleton-filter-function)
30 (skeleton-pair-filter-function): Make these the real names.
31
32 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
33 and skeleton-pair-filter-function.
34
35 * textmodes/sgml-mode.el (sgml-transformation): Make this the
36 alias for the following variable.
37 (sgml-transformation-function): Make this the real name.
38 (sgml-tag-alist): Mark as risky.
39
12006-05-21 Richard Stallman <rms@gnu.org> 402006-05-21 Richard Stallman <rms@gnu.org>
2 41
3 * simple.el (kill-region): Interactively, pass point, then mark. 42 * simple.el (kill-region): Interactively, pass point, then mark.
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 93a30162d91..ab3da050456 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -1390,7 +1390,7 @@ with your script for an edit-interpret-debug cycle."
1390 (make-local-variable 'sh-shell-file) 1390 (make-local-variable 'sh-shell-file)
1391 (make-local-variable 'sh-shell) 1391 (make-local-variable 'sh-shell)
1392 (make-local-variable 'skeleton-pair-alist) 1392 (make-local-variable 'skeleton-pair-alist)
1393 (make-local-variable 'skeleton-pair-filter) 1393 (make-local-variable 'skeleton-pair-filter-function)
1394 (make-local-variable 'comint-dynamic-complete-functions) 1394 (make-local-variable 'comint-dynamic-complete-functions)
1395 (make-local-variable 'comint-prompt-regexp) 1395 (make-local-variable 'comint-prompt-regexp)
1396 (make-local-variable 'font-lock-defaults) 1396 (make-local-variable 'font-lock-defaults)
@@ -1422,7 +1422,7 @@ with your script for an edit-interpret-debug cycle."
1422 (font-lock-syntactic-face-function 1422 (font-lock-syntactic-face-function
1423 . sh-font-lock-syntactic-face-function)) 1423 . sh-font-lock-syntactic-face-function))
1424 skeleton-pair-alist '((?` _ ?`)) 1424 skeleton-pair-alist '((?` _ ?`))
1425 skeleton-pair-filter 'sh-quoted-p 1425 skeleton-pair-filter-function 'sh-quoted-p
1426 skeleton-further-elements '((< '(- (min sh-indentation 1426 skeleton-further-elements '((< '(- (min sh-indentation
1427 (current-column))))) 1427 (current-column)))))
1428 skeleton-filter-function 'sh-feature 1428 skeleton-filter-function 'sh-feature