From 66a89f2a6c6b0709bd0de45e6bbe57027c99daee Mon Sep 17 00:00:00 2001 From: Christopher Mazey Date: Sun, 15 Feb 2015 16:46:43 -0500 Subject: [PATCH] Make haskell-process-generate-tags really output TAGS The `find' invocation was only generating any output for *.hsc files. --- haskell-commands.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-commands.el b/haskell-commands.el index 6d467843a..ed15a07b4 100644 --- a/haskell-commands.el +++ b/haskell-commands.el @@ -631,7 +631,7 @@ command from GHCi." (format ":!cd %s && %s | %s" (haskell-session-cabal-dir (haskell-process-session (car state))) - "find . -name '*.hs' -or -name '*.lhs' -or -name '*.hsc' -print0" + "find . -name '*.hs' -print0 -or -name '*.lhs' -print0 -or -name '*.hsc' -print0" "xargs -0 hasktags -e -x")))) :complete (lambda (state response) (when (cdr state)