emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] /srv/bzr/emacs/trunk r105995: Make frame iconification


From: Stefan Monnier
Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r105995: Make frame iconification/deletion optional when burying buffers.
Date: Tue, 04 Oct 2011 13:44:53 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

> +(defcustom frame-auto-delete nil

This should be frame-auto-hide-function, because some people will want
neither iconification nor deletion.  Something like:

(defcustom frame-auto-hide-function #'iconify-frame
  "blabla"
  :type '(choice (const :tag "Iconify" iconify-frame)
                 (const :tag "Delete" delete-frame)
                 (const :tag "Do nothing" ignore)
                 function))


        Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]