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.
1 parent fac0463 commit a3e6ed8Copy full SHA for a3e6ed8
tests/haskell-completions-tests.el
@@ -62,12 +62,9 @@
62
(save-excursion (insert "bcd"))
63
(should (eql nil (haskell-completions-can-grab-prefix)))
64
;; region case
65
- (let ((p (point)))
66
- (goto-char (point-min))
67
- (push-mark)
68
- (goto-char p)
69
- (activate-mark)
70
- (should (eql nil (haskell-completions-can-grab-prefix))))))
+ (push-mark (point-min) t)
+ (activate-mark)
+ (should (eql nil (haskell-completions-can-grab-prefix)))))
71
72
73
(ert-deftest haskell-completions-grab-pragma-prefix-nil-cases-test ()
0 commit comments