diff options
| author | Dan Nicolaescu | 2005-05-11 22:57:25 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2005-05-11 22:57:25 +0000 |
| commit | 8cec35c42eefe184f694c62f5d58b7fd6009141c (patch) | |
| tree | e79fb0e098bee3d261bf64d60cce7356104fe7bb /lisp/progmodes | |
| parent | be239defd95615fa89e89e342e49755fb73a688f (diff) | |
| download | emacs-8cec35c42eefe184f694c62f5d58b7fd6009141c.tar.gz emacs-8cec35c42eefe184f694c62f5d58b7fd6009141c.zip | |
(sh-mode-default-syntax-table): Set the
syntax of $ to "'" (quote).
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/sh-script.el | 4 |
1 files changed, 4 insertions, 0 deletions
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 | ?: "_" |