Section can be quoted by '"'. Handle this situation.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 27 Sep 2011 10:34:48 +0300
changeset 707 98687875846e
parent 706 7f0d6be0a3ed
child 708 659c1d14b849
Section can be quoted by '"'. Handle this situation.
nsis-mode.el
--- a/nsis-mode.el	Tue Sep 27 10:33:24 2011 +0300
+++ b/nsis-mode.el	Tue Sep 27 10:34:48 2011 +0300
@@ -78,7 +78,7 @@
 (setq nsis-imenu-generic-expression
       '(
         ("Defines"  "^!define[[:blank:]]+\\([[:word:]]+\\)" 1)
-        ("Sections"  "^Section[[:blank:]]+\\(-?[[:word:]]+\\)" 1)
+        ("Sections"  "^Section[[:blank:]]+\"?\\(-?[[:word:]]+\\)\"?" 1)
         ("Functions"  "^Function[[:blank:]]+\\([[:word:]]+\\)" 1)
         ("Macros"  "^!macro[[:blank:]]+\\([[:word:]]+\\)" 1)
         ))