[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/doc-show-inline 11fc50a13c 03/12: Demote errors
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/doc-show-inline 11fc50a13c 03/12: Demote errors |
Date: |
Thu, 7 Jul 2022 11:58:57 -0400 (EDT) |
branch: elpa/doc-show-inline
commit 11fc50a13c89386e3dd7e32f8e22d927347f14f9
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>
Demote errors
---
doc-show-inline.el | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/doc-show-inline.el b/doc-show-inline.el
index 866238b365..41a2645c37 100644
--- a/doc-show-inline.el
+++ b/doc-show-inline.el
@@ -455,7 +455,9 @@ Argument XREF-BACKEND is used to avoid multiple calls to
`xref-find-backend'."
(save-excursion
(doc-show-inline--with-advice 'run-mode-hooks
:override
- (lambda (_hooks) (run-hooks 'doc-show-inline-buffer-hook))
+ (lambda (_hooks)
+ (with-demoted-errors "doc-show-inline-buffer-hook: %S"
+ (run-hooks 'doc-show-inline-buffer-hook)))
(dolist (item xref-list)
(let*
@@ -475,9 +477,11 @@ Argument XREF-BACKEND is used to avoid multiple calls to
`xref-find-backend'."
;; note that we could assume this only uses the comment
face
;; however some configurations highlight tags such as TODO
;; or even bad spelling, so font lock this text.
- (font-lock-ensure pos-beg pos-end)
+ (with-demoted-errors "doc-show-inline/font-lock-ensure: %S"
+ (font-lock-ensure pos-beg pos-end))
- (run-hook-with-args 'doc-show-inline-fontify-hook pos-beg
pos-end)
+ (with-demoted-errors "doc-show-inline-fontify-hook: %S"
+ (run-hook-with-args 'doc-show-inline-fontify-hook
pos-beg pos-end))
(let
(
- [nongnu] branch elpa/doc-show-inline created (now 0cceb39df3), ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 2ddb1c70f9 02/12: Display blank space between the symbol and the comment, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 8b457d565d 06/12: Fix an error with C/C++ raising an error during syntax highlighting, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 5705f8d6f5 09/12: Cleanup: use brief SPDX license, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 0cceb39df3 12/12: Change URL to codeberg, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 2757164831 04/12: Fix for displaying indented doc-strings, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 6bfea44e0b 08/12: Cleanup: minor improvement to error message, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 11fc50a13c 03/12: Demote errors,
ELPA Syncer <=
- [nongnu] elpa/doc-show-inline daa99f0773 07/12: Fix repeat not being set for the initial timer, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 1c5837d2a6 01/12: Initial working version., ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 3a4eee3ef3 05/12: Add doc-show-inline-exclude-regexp, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 4295439062 10/12: Add doc-show-inline-exclude-blank-lines option, ELPA Syncer, 2022/07/07
- [nongnu] elpa/doc-show-inline 11a29ebfd7 11/12: Fix use of marker-position on an integer, ELPA Syncer, 2022/07/07