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

Re: [URGENT] Re: next week



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.

On 2018-06-12 13:22, Katsumi Yamaoka wrote:
> In [emacs-w3m:13009]
> On Thu, 07 Jun 2018 05:19:40 -0400, Boruch Baum wrote:
> > But that's the problem: With only two parentheses, when I go to the end
> > of function `w3m-delete-buffer', it evaluates back only to the "(let*
> > ((w3m-fb-mode nil)" on my line 8160, and when I run M-x check-parens on
> > the buffer it flags an error for that function.
>
> So, could you post a patch against the present code in CVS?


-- 
hkp://keys.gnupg.net
CA45 09B5 5351 7C11 A9D1  7286 0036 9E45 1595 8BC0
--- w3m.el	2018-06-12 12:02:07.481518184 -0400
+++ ../emacs-w3m_cvs/w3m.el	2018-06-11 16:41:51.267077875 -0400
@@ -8169,7 +8174,7 @@ launched this buffer."
 			  (when (and (eq major-mode 'w3m-mode)
 				     (not (eq buf cur)))
 			    (push buf bufs)))
-			'no-minibuf))
+			'no-minibuf)))
 	(cond ((= (1- num) (length bufs))
 	       ;; All the other buffers are shown in the current frame.
 	       (select-window (get-buffer-window (prog2
@@ -8220,10 +8225,10 @@ launched this buffer."
       ;; this command is called by a mouse event.
       (run-at-time 0.1 nil #'w3m-history-restore-position)
       (run-hooks 'w3m-delete-buffer-hook)
-      (w3m-session-crash-recovery-save)))
+      (w3m-session-crash-recovery-save)
   (w3m-select-buffer-update)
   (unless w3m-fb-inhibit-buffer-selection
-    (w3m-fb-select-buffer)))
+    (w3m-fb-select-buffer))))

 (defun w3m-delete-buffer-if-empty (buffer)
   "Delete a newly created emacs-w3m buffer BUFFER if it seems unnecessary.