branch: externals/devdocs
commit 54e7cb8b0743f9ce26dc4e75291883cc8c31def4
Author: Augusto Stoffel <arstof...@gmail.com>
Commit: Augusto Stoffel <arstof...@gmail.com>

    Fix call to ignore-error
---
 devdocs.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devdocs.el b/devdocs.el
index f5a2675a61..8cb3e2fc96 100644
--- a/devdocs.el
+++ b/devdocs.el
@@ -336,7 +336,7 @@ with the order of appearance in the text."
            (current (seq-position entries nil pred)))
       (unless current (user-error "No current entry"))
       (devdocs--render
-       (or (ignore-error 'args-out-of-range (elt entries (+ count current)))
+       (or (ignore-error args-out-of-range (elt entries (+ count current)))
            (user-error "No %s entry" (if (< count 0) "previous" "next")))))))
 
 (defun devdocs-previous-entry (count)

Reply via email to