From: Eli Zaretskii Date: Mon, 21 Aug 2023 18:18:08 +0000 (+0300) Subject: ; Fix 'desktop-restore-reuses-frames' customize values X-Git-Tag: emacs-29.1.90~184 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b72f23a532bf57ead565182f8f2d5f2818032da8;p=emacs.git ; Fix 'desktop-restore-reuses-frames' customize values * lisp/desktop.el (desktop-restore-reuses-frames): Fix defcustom's value. (Bug#65435) --- diff --git a/lisp/desktop.el b/lisp/desktop.el index 3d78c4cb6f8..d6d3e609b21 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -450,7 +450,7 @@ If nil, deletes existing frames. If `keep', keeps existing frames and does not reuse them." :type '(choice (const :tag "Reuse existing frames" t) (const :tag "Delete existing frames" nil) - (const :tag "Keep existing frames" :keep)) + (const :tag "Keep existing frames" keep)) :group 'desktop :version "24.4")