Skip to content

Commit bfc5b7d

Browse files
authored
Merge pull request #565 from emacs-php/modify-syntax-entry-dollar
Modify syntax-entry $ to "_" from "'"
2 parents 7e630bf + 727072c commit bfc5b7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php-mode.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ After setting the stylevars run hooks according to STYLENAME
10731073
(modify-syntax-entry ?\" "\"" table)
10741074
(modify-syntax-entry ?# "< b" table)
10751075
(modify-syntax-entry ?\n "> b" table)
1076-
(modify-syntax-entry ?$ "'" table)
1076+
(modify-syntax-entry ?$ "_" table)
10771077
table))
10781078

10791079
;;;###autoload

0 commit comments

Comments
 (0)