From 5f4df2d661060a0b8d7c901f9cea9c5303ac5e25 Mon Sep 17 00:00:00 2001 From: "Jose A. Ortega Ruiz" Date: Wed, 29 Jul 2009 00:29:43 +0200 Subject: [PATCH] FUEL: Bug fix: parenthesis matching when ( belongs to a word. --- misc/fuel/fuel-syntax.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/fuel/fuel-syntax.el b/misc/fuel/fuel-syntax.el index a4559c5c5c..73d6781313 100644 --- a/misc/fuel/fuel-syntax.el +++ b/misc/fuel/fuel-syntax.el @@ -281,7 +281,7 @@ ("\\_<\\(}\\)\\_>" (1 "){")) ;; Parenthesis: ("\\_<\\((\\)\\_>" (1 "()")) - ("\\_" (1 "()")) + ("\\_<\\w*\\((\\)\\_>" (1 "()")) ("\\_<\\()\\)\\_>" (1 ")(")) ("\\_<(\\((\\)\\_>" (1 "()")) ("\\_<\\()\\))\\_>" (1 ")("))