emacs-diffs
[Top][All Lists]
Advanced

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

feature/integration-of-dictionary-el 81ebe86 04/17: Show error message w


From: Torsten Hilbrich
Subject: feature/integration-of-dictionary-el 81ebe86 04/17: Show error message when asking to match for nothing
Date: Mon, 14 Dec 2020 05:46:37 -0500 (EST)

branch: feature/integration-of-dictionary-el
commit 81ebe86d8deace5cc39979a42dcf062bdaa830c4
Author: Torsten Hilbrich <torsten.hilbrich@gmx.net>
Commit: Torsten Hilbrich <torsten.hilbrich@gmx.net>

    Show error message when asking to match for nothing
    
    * lisp/net/dictionary.el (dictionary-popup-matching-words): Show error
    if neither the parameter nor the word at point are defined
    
    This avoids an error later on when the nil value is used as string
    within dictionary-encode-charset.
---
 lisp/net/dictionary.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el
index 12b11cb..d910dab 100644
--- a/lisp/net/dictionary.el
+++ b/lisp/net/dictionary.el
@@ -1179,7 +1179,7 @@ It presents the word at point as default input and allows 
editing it."
 (defun dictionary-popup-matching-words (&optional word)
   "Display entries matching the word at the point"
   (interactive)
-  (dictionary-do-matching (or word (current-word))
+  (dictionary-do-matching (or word (current-word) (error "Nothing to search 
for"))
                          dictionary-default-dictionary
                          dictionary-default-popup-strategy
                          'dictionary-process-popup-replies))



reply via email to

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