From: Lars Ingebrigtsen Date: Fri, 18 Sep 2020 13:03:03 +0000 (+0200) Subject: Fix the defcustom type of eww-retrieve-command X-Git-Tag: emacs-28.0.90~6013 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=610be8f64db24f64fadc754a2e88cc59f1adb355;p=emacs.git Fix the defcustom type of eww-retrieve-command * lisp/net/eww.el (eww-retrieve-command): The type is a list of strings. --- diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 2717dfbe79d..8918be0d2e3 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -141,7 +141,7 @@ this should be a list where the first item is the program, and the rest are the arguments." :version "28.1" :type '(choice (const :tag "Use `url-retrieve'" nil) - (list string))) + (repeat string))) (defcustom eww-use-external-browser-for-content-type "\\`\\(video/\\|audio/\\|application/ogg\\)"