summaryrefslogtreecommitdiff
path: root/lisp/net/eww.el
diff options
context:
space:
mode:
authorRobert Pluim <rpluim@gmail.com>2021-10-21 15:53:35 +0200
committerRobert Pluim <rpluim@gmail.com>2021-10-22 11:33:16 +0200
commit24083c8d1330baf9ceda16b79ee3d285b7156023 (patch)
treeb8c2aaaee65ac5dd7286254f43a4115e45a70384 /lisp/net/eww.el
parentcf7d8fb1d77807ef4d77cfb0089fe371da454717 (diff)
downloademacs-24083c8d1330baf9ceda16b79ee3d285b7156023.tar.gz
emacs-24083c8d1330baf9ceda16b79ee3d285b7156023.tar.bz2
emacs-24083c8d1330baf9ceda16b79ee3d285b7156023.zip
* lisp/net/eww.el (eww-retrieve-command): Add :tag.
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r--lisp/net/eww.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index bb6583c2a9a..238900db0c3 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -145,12 +145,12 @@ The string will be passed through `substitute-command-keys'."
"Command to retrieve an URL via an external program.
If nil, `url-retrieve' is used to download the data.
If `sync', `url-retrieve-synchronously' is used.
-For other non-nil values, this should be a list where the first item
-is the program, and the rest are the arguments."
+For other non-nil values, this should be a list of strings where
+the first item is the program, and the rest are the arguments."
:version "28.1"
:type '(choice (const :tag "Use `url-retrieve'" nil)
(const :tag "Use `url-retrieve-synchronously'" sync)
- (repeat string)))
+ (repeat :tag "Command/args" string )))
(defcustom eww-use-external-browser-for-content-type
"\\`\\(video/\\|audio/\\|application/ogg\\)"
@@ -1901,7 +1901,7 @@ Use link at point if there is one, else the current page's URL."
(defun eww-set-character-encoding (charset)
"Set character encoding to CHARSET.
If CHARSET is nil then use UTF-8."
- (interactive "zUse character set (default utf-8): " eww-mode)
+ (interactive "zUse character set (default `utf-8'): " eww-mode)
(if (null charset)
(eww-reload nil 'utf-8)
(eww-reload nil charset)))