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

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

[elpa] externals/calibre 6ff78d6eca 05/11: Use correct author separator


From: ELPA Syncer
Subject: [elpa] externals/calibre 6ff78d6eca 05/11: Use correct author separator in calibre-cli
Date: Sat, 20 May 2023 19:57:31 -0400 (EDT)

branch: externals/calibre
commit 6ff78d6eca508ab989f1c1c0b33bb5491163f37f
Author: Kjartan Óli Ágústsson <kjartanoli@disroot.org>
Commit: Kjartan Óli Ágústsson <kjartanoli@disroot.org>

    Use correct author separator in calibre-cli
    
    * calibre-cli.el (calibre-cli--parse-authors): Split on ' & ' instead
    of ','.
---
 calibre-cli.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/calibre-cli.el b/calibre-cli.el
index 48889d9d38..564736dc75 100644
--- a/calibre-cli.el
+++ b/calibre-cli.el
@@ -65,7 +65,7 @@
 (defun calibre-cli--parse-authors (authors)
   "Parse AUTHORS a string, into a list of authors.
 AUTHORS should be a comma separated string."
-  (string-split authors ","))
+  (string-split authors " & "))
 
 (defun calibre-cli--parse-timestamp (timestamp)
   "Parse TIMESTAMP into a Lisp timestamp."



reply via email to

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