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

Re: [URGENT] Re: next week



In [emacs-w3m:13018]
On Tue, 12 Jun 2018 14:15:19 -0400, Boruch Baum wrote:

> OK. Attached. However, it has been close to a week, and no one is
> reporting any problem so I'm puzzled. My version seems fine, but your
> version also seems fine, I guess.

The present function structure of `w3m-delete-buffer' is shown
in brief below:

  (if there-is-only-one-buffer
      (w3m-quit)
    (if w3m-use-tab
	select-the-previous-tab
      (or select-the-previous-buffer
	  delete-the-frame-or-the-window))
    delete-the-current-buffer)

OTOH, your version does:

  (if there-is-only-one-buffer
      (w3m-quit)
    (if w3m-use-tab
	select-the-previous-tab)
    (or select-the-previous-buffer
	delete-the-frame-or-the-window)
    )
  delete-the-current-buffer

I don't know why it needs to do

    (or select-the-previous-buffer
	delete-the-frame-or-the-window)

even for the case w3m-use-tab is true.