emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 3d369e1 11/23: Don't convert user-error signals to error (


From: Dmitry Gutov
Subject: [elpa] master 3d369e1 11/23: Don't convert user-error signals to error (#560)
Date: Fri, 11 Nov 2016 22:21:42 +0000 (UTC)

branch: master
commit 3d369e1a7e011efa9b5afeec5fc930b85f898903
Author: Wilfred Hughes <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    Don't convert user-error signals to error (#560)
---
 company.el |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/company.el b/company.el
index 1721005..d297bd3 100644
--- a/company.el
+++ b/company.el
@@ -920,6 +920,9 @@ matches IDLE-BEGIN-AFTER-RE, return it wrapped in a cons."
       (if (functionp company-backend)
           (apply company-backend args)
         (apply #'company--multi-backend-adapter company-backend args))
+    (user-error (user-error
+                 "Company: backend %s user-error: %s"
+                 company-backend (error-message-string err)))
     (error (error "Company: backend %s error \"%s\" with args %s"
                   company-backend (error-message-string err) args))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]