branch: externals/calibre
commit 85e3ac6337b6baeba32b3f442a4f1db5bc8ac929
Author: Kjartan Óli Ágústsson <[email protected]>
Commit: Kjartan Óli Ágústsson <[email protected]>

    Add missing space in completing-read prompt
    
    * calibre-search.el (calibre-search--operation): Add a space in the
    prompt given to completing-read.
---
 calibre-search.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/calibre-search.el b/calibre-search.el
index 4f8e402737..f67e93db9f 100644
--- a/calibre-search.el
+++ b/calibre-search.el
@@ -40,7 +40,7 @@ will not be appended to the calibre-db--get-FIELD function's 
name."
   `(defun ,(intern (format "calibre-search-chose-%s" field)) ()
      ,(format "Prompt the user to select %s %s" (if an "an" "a") field)
      (interactive)
-     (completing-read ,(format "%s:" (capitalize field))
+     (completing-read ,(format "%s: " (capitalize field))
                       (,(intern (format "calibre-db--get-%s%s"
                                         field
                                         (if plural "" "s")))))))

Reply via email to