diff options
| author | Eduardo Julian | 2019-03-30 21:45:45 -0400 | 
|---|---|---|
| committer | Eduardo Julian | 2019-03-30 21:45:45 -0400 | 
| commit | 118895081d97279a796cc704e6c23bf92ed79e5e (patch) | |
| tree | 1ea654e3f913bfc5f978bba46620c535e7a4a7bc /lux-mode | |
| parent | 5009bfaa56119a58e675a1e6008623790b54cc1c (diff) | |
Re-named "do-template" to "template".
Diffstat (limited to 'lux-mode')
| -rw-r--r-- | lux-mode/lux-mode.el | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index c888df739..09ab08da5 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -259,7 +259,7 @@ Called by `imenu--generic-function'."                      ;; Code                      (code//quotation (altRE "`" "`'" "'" "~" "~\\+" "~!" "~'"))                      (code//super-quotation (altRE "``" "~~")) -                    (code//template (altRE "do-template" "template:")) +                    (code//template (altRE "template" "template:"))                      ;; Miscellaneous                      (actor (altRE "actor:" "message:" "on:"))                      (jvm-host (altRE "class:" "interface:" "import:" "object" "do-to" "synchronized" "class-for")) @@ -440,7 +440,7 @@ This function also returns nil meaning don't specify the indentation."    (if 1)    (cond 0)    (loop 1) -  (do-template 'defun) +  (template 'defun)    (All 'defun)    (Ex 'defun)    (Rec 'defun) | 
