From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/74091 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: nnir and move Date: Mon, 15 Nov 2010 11:40:49 +0900 Organization: Emacsen advocacy group Message-ID: References: <87wrox5jyh.fsf@andy.bu.edu> <87sjzl5jis.fsf@andy.bu.edu> <8739rl5d9d.fsf@andy.bu.edu> <87vd4h3xmh.fsf@andy.bu.edu> <87sjzap2yk.fsf@lifelogs.com> <87oc9xt9mi.fsf@andy.bu.edu> <87sjz9m83m.fsf@lifelogs.com> <87k4klt3zf.fsf@andy.bu.edu> <87mxphko13.fsf@lifelogs.com> <87fwv9t2pr.fsf@andy.bu.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1289788954 9292 80.91.229.12 (15 Nov 2010 02:42:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 15 Nov 2010 02:42:34 +0000 (UTC) Cc: ding@gnus.org To: Andrew Cohen Original-X-From: ding-owner+M22459@lists.math.uh.edu Mon Nov 15 03:42:30 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PHp1Z-0007VK-GD for ding-account@gmane.org; Mon, 15 Nov 2010 03:42:29 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PHp0w-0000VW-GD; Sun, 14 Nov 2010 20:41:50 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PHp0v-0000VH-8A for ding@lists.math.uh.edu; Sun, 14 Nov 2010 20:41:49 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PHp0t-00040D-NL for ding@lists.math.uh.edu; Sun, 14 Nov 2010 20:41:49 -0600 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1PHp0s-0005e3-00 for ; Mon, 15 Nov 2010 03:41:47 +0100 Original-Received: from localhost ([127.0.0.1]:52828) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1PHp0I-0005mO-9s; Sun, 14 Nov 2010 20:41:11 -0600 X-Hashcash: 1:20:101115:cohen@andy.bu.edu::ozyzbZxIKNZy5gIL:000000000000000000000000000000000000000000002UzY X-Hashcash: 1:20:101115:ding@gnus.org::Pjsju/qDHThW1Bet:0000AR/y X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:jYRJUYCAQtbsnGo4/7GnAY+ZBCQ= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:74091 Archived-At: Hi, 2010-11-11 Andrew Cohen [...] * gnus-sum.el (gnus-summary-move-article): Use original group and subject for virtual articles such as those in an nnir summary buffer. This change broke the function of copying or moving two or more articles. When typing `B c' for marked articles in a group, I got: Debugger entered--Lisp error: (error "Selecting deleted buffer") gnus-summary-move-article(nil nil nil copy) gnus-summary-copy-article(nil) call-interactively(gnus-summary-copy-article nil nil) It is because of the present structure of `while' loop: (let ((copy-buf (save-excursion (nnheader-set-temp-buffer " *copy article*")))) ... (while articles .... (gnus-kill-buffer copy-buf))) It was: (let ((copy-buf (save-excursion (nnheader-set-temp-buffer " *copy article*")))) ... (while articles ....) (gnus-kill-buffer copy-buf)) I've fixed it in the git repo. Could you check whether my change didn't break what you intended? Regards,