branch: externals/kiwix commit f1554bad2e8037f77fc60575fe05ecf3e8c84679 Author: stardiviner <numbch...@gmail.com> Commit: stardiviner <numbch...@gmail.com>
fix some default library abbr name. --- kiwix.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwix.el b/kiwix.el index f22f62d..d0b6fcf 100644 --- a/kiwix.el +++ b/kiwix.el @@ -113,7 +113,7 @@ "Get Kiwix library full name which is associated with `ABBR'." (cdr (assoc abbr kiwix-libraries-abbrev-alist))) -(defcustom kiwix-default-library "wikipedia_en" +(defcustom kiwix-default-library "wikipedia_en_all" "The default kiwix library when library fragment in link not specified.") ;; add default key-value pair to libraries alist. @@ -121,7 +121,7 @@ (cons (list (cons "default" (kiwix-get-library-fullname kiwix-default-library)) (cons "en" (kiwix-get-library-fullname kiwix-default-library)) - (cons "zh" (kiwix-get-library-fullname "wikipedia_zh")))) + (cons "zh" (kiwix-get-library-fullname "wikipedia_zh_all")))) (push cons kiwix-libraries-abbrev-alist) )