diff options
author | Eduardo Julian | 2022-03-14 01:09:08 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-03-14 01:09:08 -0400 |
commit | b8681fd206d5b5076b9737ee54f0cb0405a898d6 (patch) | |
tree | 6ba25cc4f31ad07b4279828568e9019f26334eca /lux-mode | |
parent | 6766be5427b1788a44e07151e3fabe33ec4f8b37 (diff) |
Can now add type-vars to imported procedures from scripting languages.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 016c0170c..ff17f0a44 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -461,7 +461,7 @@ Called by `imenu--generic-function'." in-module in-local)) (typeRE (concat global_prefix (+class identifier_h|type) (-class identifier_t) "*")) - (labelRE (concat global_prefix (+class identifier_h|label) (-class identifier_t) "*")) + (labelRE (concat global_prefix (+class identifier_h|label) (-class identifier_t) "+")) (literalRE (altRE bitRE ;; Bit literals natRE ;; Nat literals int&fracRE ;; Int literals && Frac literals |