We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
haskell-mode-jump-to-tag
1 parent c4cbd61 commit 263d7b5Copy full SHA for 263d7b5
haskell.el
@@ -312,7 +312,7 @@
312
(let ((ident (haskell-ident-at-point))
313
(tags-file-name (haskell-session-tags-filename (haskell-session)))
314
(tags-revert-without-query t))
315
- (when (and (stringp ident) (not (string= "" (haskell-string-trim ident))))
+ (when (and ident (not (string= "" (haskell-string-trim ident))))
316
(cond ((file-exists-p tags-file-name)
317
(find-tag ident next-p))
318
(t (haskell-process-generate-tags ident))))))
0 commit comments