From 261441c0afdc467db012ca4506ecca352dca513b Mon Sep 17 00:00:00 2001 From: Bryan Duxbury Date: Tue, 24 Mar 2009 00:39:27 +0000 Subject: [PATCH] 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 --- contrib/thrift.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/thrift.el b/contrib/thrift.el index 56d2b94a4..fdee7e28f 100644 --- a/contrib/thrift.el +++ b/contrib/thrift.el @@ -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)