]> git.eshelyaron.com Git - emacs.git/commitdiff
Make "not found" message in dictionary less misleading
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 18 Mar 2021 07:43:22 +0000 (08:43 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 18 Mar 2021 07:43:22 +0000 (08:43 +0100)
* lisp/net/dictionary.el (dictionary-do-search): Don't say there
are more words when there aren't (bug#47056).

lisp/net/dictionary.el

index 5938b8146ef9a1c0faacbbb2b1178af59d0b80be..f33cbaf1126e6e401f4a130d20f1c4c7d66cd101 100644 (file)
@@ -721,13 +721,14 @@ of matching words."
     (if (dictionary-check-reply reply 552)
        (progn
          (unless nomatching
-           (beep)
-           (insert "Word not found, maybe you are looking "
-                   "for one of these words\n\n")
-           (dictionary-do-matching word
-                                   dictionary
-                                   "."
-                                   'dictionary-display-only-match-result)
+           (insert "Word not found")
+           (dictionary-do-matching
+             word
+            dictionary
+            "."
+            (lambda (reply)
+               (insert ", maybe you are looking for one of these words\n\n")
+               (dictionary-display-only-match-result reply)))
            (dictionary-post-buffer)))
       (if (dictionary-check-reply reply 550)
           (error "Dictionary \"%s\" is unknown, please select an existing one"
@@ -1074,7 +1075,6 @@ If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
 
 (defun dictionary-display-only-match-result (reply)
   "Display the results from the current matches in REPLY without the headers."
-
   (let ((number (nth 1 (dictionary-reply-list reply)))
        (list (dictionary-simple-split-string (dictionary-read-answer) "\n+")))
     (insert number " matching word" (if (equal number "1") "" "s")