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: martin rudalics
Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r105995: Make frame iconification/deletion optional when burying buffers.
Date: Wed, 05 Oct 2011 08:54:52 +0200
User-agent: Thunderbird 2.0.0.21 (Windows/20090302)

+(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))

Done.

martin




reply via email to

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