Skip to content

Commit

Permalink
Merge pull request #565 from emacs-php/modify-syntax-entry-dollar
Browse files Browse the repository at this point in the history
Modify syntax-entry $ to "_" from "'"
  • Loading branch information
zonuexe authored Aug 24, 2019
2 parents 7e630bf + 727072c commit bfc5b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ After setting the stylevars run hooks according to STYLENAME
(modify-syntax-entry ?\" "\"" table)
(modify-syntax-entry ?# "< b" table)
(modify-syntax-entry ?\n "> b" table)
(modify-syntax-entry ?$ "'" table)
(modify-syntax-entry ?$ "_" table)
table))

;;;###autoload
Expand Down

0 comments on commit bfc5b7d

Please sign in to comment.