branch: elpa/sass-mode commit d19542f4131b3e6d94655ab6c7403442bf2cc332 Author: Steve Purcell <st...@sanityinc.com> Commit: Steve Purcell <st...@sanityinc.com>
Don't override the syntax classes for "-" and "_" Closes #16, thanks Le Wang --- sass-mode.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sass-mode.el b/sass-mode.el index c1e89a5..25d20f7 100644 --- a/sass-mode.el +++ b/sass-mode.el @@ -78,10 +78,7 @@ text nested beneath them.") (,(regexp-opt '("and" "or" "not")) 0 font-lock-keyword-face))) (defconst sass-syntax-table - (let ((st (make-syntax-table))) - (modify-syntax-entry ?- "w" st) - (modify-syntax-entry ?_ "w" st) - st)) + (make-syntax-table)) (defconst sass-script-syntax-table (let ((st (make-syntax-table sass-syntax-table)))