From 3817ced7ba4c053d6d39b26cc193f122d42f05fb Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 19 Nov 2021 18:36:03 -0800 Subject: [PATCH] * lisp/xwidget.el (xwidget-webkit-cookie-file): Fix type. --- lisp/xwidget.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/xwidget.el b/lisp/xwidget.el index e9a0507bbf3..33b6c16a1d8 100644 --- a/lisp/xwidget.el +++ b/lisp/xwidget.el @@ -112,7 +112,7 @@ It can use the following special constructs: "The name of the file where `xwidget-webkit-browse-url' will store cookies. They will be stored as plain text in Mozilla \"cookies.txt\" format. If nil, do not store cookies." - :type 'string + :type '(choice (const :tag "Do not store cookies" nil) file) :version "29.1") ;;;###autoload -- 2.39.5