Skip to content

Commit 66a89f2

Browse files
committed
Make haskell-process-generate-tags really output TAGS
The `find' invocation was only generating any output for *.hsc files.
1 parent 35633bf commit 66a89f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

haskell-commands.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ command from GHCi."
631631
(format ":!cd %s && %s | %s"
632632
(haskell-session-cabal-dir
633633
(haskell-process-session (car state)))
634-
"find . -name '*.hs' -or -name '*.lhs' -or -name '*.hsc' -print0"
634+
"find . -name '*.hs' -print0 -or -name '*.lhs' -print0 -or -name '*.hsc' -print0"
635635
"xargs -0 hasktags -e -x"))))
636636
:complete (lambda (state response)
637637
(when (cdr state)

0 commit comments

Comments
 (0)