diff options
author | Eduardo Julian | 2020-04-16 00:22:24 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-04-16 00:22:24 -0400 |
commit | 1888b5c3288e4e7653a424e7314ea5c8277ab360 (patch) | |
tree | a40768d314bc610f9c17446d86e33eba44d5e6c8 /lux-mode | |
parent | 4f1553c6f6bb579f09749d5b9ca955c43a7440a4 (diff) |
Generating definition names in a new way.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index e3dfd46f6..16609262b 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -207,6 +207,7 @@ Called by `imenu--generic-function'." (set-match-data (list def-beg def-end))))) (goto-char start))))) +;; https://www.gnu.org/software/findutils/manual/html_node/find_html/emacs-regular-expression-syntax.html (defun altRE (&rest alternatives) (concat "\\(" (mapconcat 'identity alternatives "\\|") "\\)")) |