; Fix 'desktop-restore-reuses-frames' customize values

* lisp/desktop.el (desktop-restore-reuses-frames): Fix defcustom's
value.  (Bug#65435)
This commit is contained in:
Eli Zaretskii 2023-08-21 21:18:08 +03:00
parent 45cc57ac25
commit b72f23a532

View file

@ -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")