aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2005-05-11 22:57:25 +0000
committerDan Nicolaescu2005-05-11 22:57:25 +0000
commit8cec35c42eefe184f694c62f5d58b7fd6009141c (patch)
treee79fb0e098bee3d261bf64d60cce7356104fe7bb
parentbe239defd95615fa89e89e342e49755fb73a688f (diff)
downloademacs-8cec35c42eefe184f694c62f5d58b7fd6009141c.tar.gz
emacs-8cec35c42eefe184f694c62f5d58b7fd6009141c.zip
(sh-mode-default-syntax-table): Set the
syntax of $ to "'" (quote).
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/sh-script.el4
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5a12dd84340..9ae919c98c4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
4 syntax of $ to "'" (quote).
5
12005-05-11 Reiner Steib <Reiner.Steib@gmx.de> 62005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
2 7
3 * dnd.el (dnd-protocol-alist): Improve custom type. 8 * dnd.el (dnd-protocol-alist): Improve custom type.
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 70172e22732..ae024e8111e 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -414,6 +414,10 @@ This is buffer-local in every such buffer.")
414 ?\" "\"\"" 414 ?\" "\"\""
415 ?\' "\"'" 415 ?\' "\"'"
416 ?\` "\"`" 416 ?\` "\"`"
417 ;; ?$ might also have a ". p" syntax. Both "'" and ". p" seem
418 ;; to work fine. This is needed so that dabbrev-expand
419 ;; $VARNAME works.
420 ?$ "'"
417 ?! "_" 421 ?! "_"
418 ?% "_" 422 ?% "_"
419 ?: "_" 423 ?: "_"