fix(emacs/lean-tags): pass lean-flycheck-checker-options properly
Fix #153
This commit is contained in:
parent
c365f6b9ab
commit
a40894a712
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,10 @@
|
|||
(let ((ltags-file-name (lean-get-executable "linja"))
|
||||
tags-file-name)
|
||||
(message "Generating TAGS...")
|
||||
(call-process ltags-file-name nil nil nil (string-join lean-flycheck-checker-options " ") "TAGS")
|
||||
(apply 'call-process
|
||||
(append `(,ltags-file-name nil "*lean-tags*" nil)
|
||||
lean-flycheck-checker-options
|
||||
'("TAGS")))
|
||||
(message "TAGS generated."))
|
||||
(unless tags-table-list
|
||||
(setq tags-file-name (lean-find-file-upward "TAGS"))
|
||||
|
|
Loading…
Reference in a new issue