You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by br...@apache.org on 2009/03/24 01:39:28 UTC

svn commit: r757621 - /incubator/thrift/trunk/contrib/thrift.el

Author: bryanduxbury
Date: Tue Mar 24 00:39:27 2009
New Revision: 757621

URL: http://svn.apache.org/viewvc?rev=757621&view=rev
Log:
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.


Modified:
    incubator/thrift/trunk/contrib/thrift.el

Modified: incubator/thrift/trunk/contrib/thrift.el
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/contrib/thrift.el?rev=757621&r1=757620&r2=757621&view=diff
==============================================================================
--- incubator/thrift/trunk/contrib/thrift.el (original)
+++ incubator/thrift/trunk/contrib/thrift.el Tue Mar 24 00:39:27 2009
@@ -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)