THRIFT-32. thrift.el doesn't syntax highlight single line comments correctly in xemacs

Even though Todd didn't give me an easy patch to apply, I still figured it out because I just like the guy so much.



git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@757621 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bryan Duxbury 2009-03-24 00:39:27 +00:00
parent 3fb4f1ec92
commit 261441c0af

View File

@ -87,7 +87,7 @@
(defvar thrift-mode-syntax-table
(let ((thrift-mode-syntax-table (make-syntax-table)))
(modify-syntax-entry ?_ "w" thrift-mode-syntax-table)
(modify-syntax-entry ?/ ". 124b" thrift-mode-syntax-table)
(modify-syntax-entry ?/ ". 1456" thrift-mode-syntax-table)
(modify-syntax-entry ?* ". 23" thrift-mode-syntax-table)
(modify-syntax-entry ?\n "> b" thrift-mode-syntax-table)
thrift-mode-syntax-table)