branch: externals/sql-indent
commit 9559ebe1bc162dcb2d8b5edeb030e32c07b29f58
Author: Pierre Téchoueyres <pierre.techouey...@free.fr>
Commit: Alex Harsányi <alex-...@users.noreply.github.com>

    Fix `sqlind-comment-end' regexp. (#79)
    
    * sql-indent.el: Fix the regexp detected by
      trawl (https://github.com/mattiase/trawl).
---
 sql-indent.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sql-indent.el b/sql-indent.el
index 03310d6..d2ad014 100644
--- a/sql-indent.el
+++ b/sql-indent.el
@@ -84,7 +84,7 @@ constituents so that syntactic navigation works over them.")
 (defconst sqlind-comment-start-skip "\\(--+\\|/\\*+\\)\\s *"
   "Regexp to match the start of a SQL comment.")
 
-(defconst sqlind-comment-end "\\*+\\/"
+(defconst sqlind-comment-end "\\*+/"
   "Regexp to match the end of a multiline SQL comment.")
 
 (defvar sqlind-comment-prefix "\\*+\\s "

Reply via email to