branch: externals/bug-hunter
commit b88d981afa9154b236c5a3a83b50d5889d46c6a7
Author: Artur Malabarba <[email protected]>
Commit: Artur Malabarba <[email protected]>
Version 1.3.1
---
README.org | 2 +-
bug-hunter.el | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.org b/README.org
index d8c9463..b777b44 100644
--- a/README.org
+++ b/README.org
@@ -52,7 +52,7 @@ M-x bug-hunter-init-file RET a (featurep 'cl) RET
[[file:cl-example.png]]
- Are you getting obscure errors when trying to open /“.tex”/ files?
- - Don’t despair! Just use ~(find-file "dummy.tex")~ as the assertion.
+ - Don’t despair! Just use ~(and (find-file "dummy.tex") nil)~ as the
assertion.
- Did ~ox-html~ stop working due to some arcane misconfiguration?
- Just write an assertion that does an export and checks the result.
- Does some random command suddenly bind itself to ~C-j~ and you can’t figure
out why?
diff --git a/bug-hunter.el b/bug-hunter.el
index 242b866..c2d9b12 100644
--- a/bug-hunter.el
+++ b/bug-hunter.el
@@ -4,7 +4,7 @@
;; Author: Artur Malabarba <[email protected]>
;; URL: https://github.com/Malabarba/elisp-bug-hunter
-;; Version: 1.3
+;; Version: 1.3.1
;; Keywords: lisp
;; Package-Requires: ((seq "1.3") (cl-lib "0.5"))
@@ -75,7 +75,7 @@
;; *That’s it!* You’ll be given a nice buffer reporting the results:
;;
;; - Are you getting obscure errors when trying to open /".tex"/ files?
-;; - Don’t despair! Just use `(find-file "dummy.tex")' as the
+;; - Don’t despair! Just use `(and (find-file "dummy.tex") nil)' as the
;; assertion.
;; - Did `ox-html' stop working due to some arcane misconfiguration?
;; - Just write an assertion that does an export and checks the result.