From xma@gnu.org Sun Mar 1 17:25:47 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 2 Mar 2009 01:25:47 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.1 required=4.0 tests=FOURLA,IMPRONONCABLE_2, MURPHY_DRUGS_REL8 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n221PhpJ009350 for ; Sun, 1 Mar 2009 17:25:44 -0800 Received: from mx10.gnu.org ([199.232.76.166]:53542) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1LdwsL-0007UL-6M for emacs-pretest-bug@gnu.org; Sun, 01 Mar 2009 20:23:21 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Ldwub-00042p-Cz for emacs-pretest-bug@gnu.org; Sun, 01 Mar 2009 20:25:42 -0500 Received: from ded1.conovae.com ([88.191.52.166]:49476 helo=mf1.conovae.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ldwua-00042U-S8 for emacs-pretest-bug@gnu.org; Sun, 01 Mar 2009 20:25:41 -0500 Received: by mf1.conovae.net (Postfix, from userid 10) id 047D1260EE0; Mon, 2 Mar 2009 02:24:28 +0100 (CET) Received: from zogzog.maillard.mobi (IDENT:1000@localhost [127.0.0.1]) by zogzog.maillard.mobi (8.14.3/8.13.8) with ESMTP id n221P76h004865 for ; Mon, 2 Mar 2009 02:25:07 +0100 Received: (from xma@localhost) by zogzog.maillard.mobi (8.14.3/8.13.8/Submit) id n221P3dY004861; Mon, 2 Mar 2009 02:25:03 +0100 Date: Mon, 2 Mar 2009 02:25:03 +0100 Message-Id: <200903020125.n221P3dY004861@zogzog.maillard.mobi> From: Xavier Maillard To: emacs-pretest-bug@gnu.org Subject: 23.0.90; [PATCH] rmail: improve rmail-add/kill-label docstring Organization: GNU's Not UNIX! User-Agent: Rmail GNU emacs 23.0 on Slackware 12.2.0 Jabber-ID: xma01@jabber.fr Reply-to: Xavier Maillard X-UUCPssh-Information: Please contact the ISP for more information X-UUCPssh: Found to be clean X-UUCPssh-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 6, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-UUCPssh-From: xma@gnu.org X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) When using keys 'a' or 'k' in a `rmail-summary' buffer, it is not obvious user can type multiple labels as "comma-separated list of labels". OTOH, it is clearly announced when user wants to summarize by labels. The patch enclosed tries to clarify this. Hope that'll help. ChangeLog proposed: 2009-03-01 Xavier Maillard * mail/rmailsum.el (rmail-summary-add-label) (rmail-summary-kill-label): Fix docstrings. Indicate user can type multiple comma-separted list of labels. Patch: diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 6940f3d..1ae0bd9 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -1542,7 +1542,8 @@ Interactively, empty argument means use same regexp used last time." (defun rmail-summary-add-label (label) "Add LABEL to labels associated with current Rmail message. -Completion is performed over known labels when reading." +Completion is performed over known labels when reading. +LABEL may be a comma-separated list of labels." (interactive (list (save-excursion (set-buffer rmail-buffer) (rmail-read-label "Add label")))) @@ -1552,7 +1553,8 @@ Completion is performed over known labels when reading." (defun rmail-summary-kill-label (label) "Remove LABEL from labels associated with current Rmail message. -Completion is performed over known labels when reading." +Completion is performed over known labels when reading. +LABEL may be a comma-separated list of labels." (interactive (list (save-excursion (set-buffer rmail-buffer) (rmail-read-label "Kill label")))) Recent input: C-x u C-x u C-SPC C-w C-SPC C-a M-w C-x b C-s C-s C-s C-s C-y C-SPC C-w C-x b x m a - s u a ' t e s t k g n u - e m k ' t e k e t e s t SPC t e s t k SPC C-x C-b C-x 1 C-SPC C-w C-SPC C-w C-a C-SPC C-e M-w C-e C-y C-SPC C-w C-x C-s C-x v = C-x 1 M-k C-x 1 C-x 1 C-x 0 C-x b C-g C-x 1 C-x b C-x 1 C-l / b C-x 5 0 M-x e m r e p o r t - e m Recent messages: Mark activated Updating buffer list... Mark set Updating buffer list...done Commands: m, u, t, RET, g, k, S, D, Q; q to quit; h for help Mark set [5 times] Saving file /home/xma/usr/src/GITed/emacs/lisp/mail/rmailsum.el... Wrote /home/xma/usr/src/GITed/emacs/lisp/mail/rmailsum.el Finding changes in /home/xma/usr/src/GITed/emacs/lisp/mail/rmailsum.el... call-interactively: Attempt to delete minibuffer or sole ordinary window Quit Xavier -- http://www.gnu.org http://www.april.org http://www.lolica.org From lekktu@gmail.com Mon Mar 2 02:11:31 2009 Received: (at control) by emacsbugs.donarmstrong.com; 2 Mar 2009 10:11:31 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: ** X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=2.3 required=4.0 tests=MISSING_SUBJECT, MURPHY_DRUGS_REL8,NOSUBJECT,VALID_BTS_CONTROL autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-ew0-f176.google.com (mail-ew0-f176.google.com [209.85.219.176]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n22ABSlN012237 for ; Mon, 2 Mar 2009 02:11:29 -0800 Received: by ewy24 with SMTP id 24so2118451ewy.1 for ; Mon, 02 Mar 2009 02:11:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=j6qe6soAcezKvhpsCzQSmJpU/kZ+aag6Oi4qOWhWoBA=; b=dP1sWYWQr8e+TZcyfY6BJyuHan3t5oN7niSqKmHs+TIdntPnpAj/hJTS+1T+1mzIVL tRLISVtI6YRLPM2ZtYU3sNOClrHb8Vb58Yye70BB+i7s1jqe7a7Ym67Ux+wEc9ltgW0d er4zCqdoQT0nUfl6hJTQHT6nsPLwgVZ/n2dpM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=vpn5i834d8i2BCYxgtML4CDqLbcwZCA1VtY9PoFqNOznwPLZTqD4EQSfSLgg0L9+qX p5kP4tvirHLpJTjw2OXZiJhYNj6VqrgTzis2Jrs4LUJ0eNbncne7cu+UeAEKocuD4ski DNEVc7fTwEfsMy7Nkw3xagwmPfJCqMHzBY9sQ= MIME-Version: 1.0 Received: by 10.210.125.13 with SMTP id x13mr4642126ebc.18.1235988682652; Mon, 02 Mar 2009 02:11:22 -0800 (PST) Date: Mon, 2 Mar 2009 11:11:22 +0100 Message-ID: Subject: From: Juanma Barranquero To: control@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit reassign 2533 emacs,rmail tags 2533 + patch reassign 2524 emacs,w32 reassign 2537 spam quit From rgm@gnu.org Wed Mar 4 21:20:25 2009 Received: (at 2533) by emacsbugs.donarmstrong.com; 5 Mar 2009 05:20:25 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-3.9 required=4.0 tests=FOURLA,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8,REMOVESPACE,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n255KMJ8011776 for <2533@emacsbugs.donarmstrong.com>; Wed, 4 Mar 2009 21:20:23 -0800 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1Lf60K-0005R7-4P; Thu, 05 Mar 2009 00:20:20 -0500 From: Glenn Morris To: Xavier Maillard Cc: 2533@debbugs.gnu.org Subject: Re: bug#2533: 23.0.90; [PATCH] rmail: improve rmail-add/kill-label docstring References: <200903020125.n221P3dY004861@zogzog.maillard.mobi> X-Spook: Security Council condor Merlin defense information X-Ran: Y:5W^@d.OS;49z4qCQ(bhX229$X>0l*1l&jZk"y^wfyC>Mot@Qc_@NsNo>:tq!!@pM}'mY X-Hue: white X-Debbugs-No-Ack: yes X-Attribution: GM Date: Thu, 05 Mar 2009 00:20:20 -0500 In-Reply-To: <200903020125.n221P3dY004861@zogzog.maillard.mobi> (Xavier Maillard's message of "Mon, 2 Mar 2009 02:25:03 +0100") Message-ID: <663adstujv.fsf@fencepost.gnu.org> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Xavier Maillard wrote: > When using keys 'a' or 'k' in a `rmail-summary' buffer, it is not > obvious user can type multiple labels as "comma-separated list of > labels". I don't believe one can, or should. These commands are intended to operate on a single label. There's no attempt to call mail-parse-comma-list or anything like that. If you try to add mutiple labels without spaces after the comma, it won't work right. > OTOH, it is clearly announced when user wants to summarize by labels. That's a different case. That command is designed to handle multiple labels. From rgm@gnu.org Wed Mar 4 21:26:42 2009 Received: (at control) by emacsbugs.donarmstrong.com; 5 Mar 2009 05:26:42 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-6.0 required=4.0 tests=HAS_BUG_NUMBER, MURPHY_DRUGS_REL8,REMOVESPACE,VALID_BTS_CONTROL,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n255QXAV013030; Wed, 4 Mar 2009 21:26:34 -0800 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1Lf66K-0005XQ-OE; Thu, 05 Mar 2009 00:26:32 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18863.25224.639908.749606@fencepost.gnu.org> Date: Thu, 5 Mar 2009 00:26:32 -0500 From: Glenn Morris To: 2533-done@debbugs.gnu.org Subject: Re: bug#2533: 23.0.90; [PATCH] rmail: improve rmail-add/kill-label docstring In-Reply-To: <663adstujv.fsf@fencepost.gnu.org> References: <200903020125.n221P3dY004861@zogzog.maillard.mobi> <663adstujv.fsf@fencepost.gnu.org> X-Debbugs-No-Ack: yes tags 2533 notabug wontfix stop Glenn Morris wrote (on Thu, 5 Mar 2009 at 00:20 -0500): > If you try to add mutiple labels without spaces after the comma, it > won't work right. And it certainly does not work in the kill case, unless you happen to specify the labels in the same order as they appear. It's just a coincidence that these commands may sometimes work for multiple labels. From unknown Fri Aug 15 12:50:15 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: $requester Subject: Internal Control Message-Id: bug archived. Date: Thu, 02 Apr 2009 14:24:07 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A log time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator