From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 00:55:18 2014 Received: (at submit) by debbugs.gnu.org; 28 Aug 2014 04:55:18 +0000 Received: from localhost ([127.0.0.1]:53974 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMrjx-0008SU-AS for submit@debbugs.gnu.org; Thu, 28 Aug 2014 00:55:18 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51266) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMrjs-0008SC-RS for submit@debbugs.gnu.org; Thu, 28 Aug 2014 00:55:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XMrjn-0003EU-MP for submit@debbugs.gnu.org; Thu, 28 Aug 2014 00:55:07 -0400 Received: from lists.gnu.org ([2001:4830:134:3::11]:37768) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMrjn-0003E5-Jl for submit@debbugs.gnu.org; Thu, 28 Aug 2014 00:55:07 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMrjg-0002he-I8 for bug-gnu-emacs@gnu.org; Thu, 28 Aug 2014 00:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XMrjX-0002fX-Gr for bug-gnu-emacs@gnu.org; Thu, 28 Aug 2014 00:55:00 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM, T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from mail-pa0-x22c.google.com ([2607:f8b0:400e:c03::22c]:35364) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMrjX-0002fM-9Z for bug-gnu-emacs@gnu.org; Thu, 28 Aug 2014 00:54:51 -0400 Received: by mail-pa0-f44.google.com with SMTP id rd3so954740pab.17 for ; Wed, 27 Aug 2014 21:54:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:mime-version:content-type; bh=uUoN41nwXatSrkjCpH7GBz+gOgOdZyh/WmhYGSPb/0c=; b=kZjE2YJBJaWjxH6g75pEdYlSDoNvKP86ErcoVKhg05dfg2SnQh07gquvvG+H/h51/4 oDPT2/w//ARLNiTWSVkWYF5WInQS4XQ00vWhTDfk0tnyBSXuOfQgLZXBCdE6zs0CfJWJ QIf9gfGbk2PDzgKTHvZV22lHYsuWB2hMJic6So2CkPqygbtLAwkeuujbNuuQWqpnJ+ML oULHduLX8/IhdLsdPU8g9XvUrLsCW8ZUf8Pf+7gb0ALWymQk1yGtZuzpR25722da4TRW 6BuqpfJIXgSMDAHTm8E8XkjLEt1ogE9WRvXlXysBS9vDXfLQ63jUgul4Y1Ms1ii2BU7Q d4lw== X-Received: by 10.67.24.73 with SMTP id ig9mr2019094pad.67.1409201689855; Wed, 27 Aug 2014 21:54:49 -0700 (PDT) Received: from fortuna ([221.222.148.29]) by mx.google.com with ESMTPSA id k4sm3449594pdn.37.2014.08.27.21.54.48 for (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Wed, 27 Aug 2014 21:54:49 -0700 (PDT) From: Leo Liu To: bug-gnu-emacs@gnu.org Subject: 24.4.50; [patch] control where hook is added minibuffer-with-setup-hook X-Debbugs-CC: Date: Thu, 28 Aug 2014 12:54:45 +0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) Any objection to extending minibuffer-with-setup-hook so that one can control where the hook is added. I have often wanted the `append' option because other hook functions can cancel my work. Will fix the doc-string once the patch is accepted. Thanks, Leo === modified file 'lisp/files.el' --- lisp/files.el 2014-08-12 02:35:24 +0000 +++ lisp/files.el 2014-08-28 04:46:15 +0000 @@ -1373,7 +1373,7 @@ 'confirm) (t nil))) -(defmacro minibuffer-with-setup-hook (fun &rest body) +(defmacro minibuffer-with-setup-hook (fun append &rest body) "Temporarily add FUN to `minibuffer-setup-hook' while executing BODY. BODY should use the minibuffer at most once. Recursive uses of the minibuffer are unaffected (FUN is not @@ -1381,9 +1381,11 @@ This macro actually adds an auxiliary function that calls FUN, rather than FUN itself, to `minibuffer-setup-hook'." - (declare (indent 1) (debug t)) + (declare (indent 2) (debug t)) (let ((hook (make-symbol "setup-hook")) - (funsym (make-symbol "fun"))) + (funsym (make-symbol "fun")) + (body (if (booleanp append) body (push append body))) + (append (and (booleanp append) append))) `(let ((,funsym ,fun) ,hook) (setq ,hook @@ -1394,7 +1396,7 @@ (funcall ,funsym))) (unwind-protect (progn - (add-hook 'minibuffer-setup-hook ,hook) + (add-hook 'minibuffer-setup-hook ,hook ,append) ,@body) (remove-hook 'minibuffer-setup-hook ,hook))))) From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 09:12:41 2014 Received: (at 18341) by debbugs.gnu.org; 28 Aug 2014 13:12:41 +0000 Received: from localhost ([127.0.0.1]:54144 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMzVJ-0005hH-Ai for submit@debbugs.gnu.org; Thu, 28 Aug 2014 09:12:41 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.181]:9812) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMzVF-0005gz-8l for 18341@debbugs.gnu.org; Thu, 28 Aug 2014 09:12:38 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArYGAIDvNVPAqyTi/2dsb2JhbABZgwaDSr0vgw6BFxd0giYBAQRWIxALDiYSFBgNJIgM0hkXjnoHhDgEqwOBcYFbIQ X-IPAS-Result: ArYGAIDvNVPAqyTi/2dsb2JhbABZgwaDSr0vgw6BFxd0giYBAQRWIxALDiYSFBgNJIgM0hkXjnoHhDgEqwOBcYFbIQ X-IronPort-AV: E=Sophos;i="4.97,753,1389762000"; d="scan'208";a="88051065" Received: from 192-171-36-226.cpe.pppoe.ca (HELO pastel.home) ([192.171.36.226]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 28 Aug 2014 09:12:31 -0400 Received: by pastel.home (Postfix, from userid 20848) id 5E0E660D09; Thu, 28 Aug 2014 09:12:26 -0400 (EDT) From: Stefan Monnier To: Leo Liu Subject: Re: bug#18341: 24.4.50; [patch] control where hook is added minibuffer-with-setup-hook Message-ID: References: Date: Thu, 28 Aug 2014 09:12:26 -0400 In-Reply-To: (Leo Liu's message of "Thu, 28 Aug 2014 12:54:45 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 18341 Cc: 18341@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) > +(defmacro minibuffer-with-setup-hook (fun append &rest body) Maybe a simpler change is to let FUN be of the form (:append FUN). Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 21:14:29 2014 Received: (at 18341) by debbugs.gnu.org; 29 Aug 2014 01:14:29 +0000 Received: from localhost ([127.0.0.1]:52946 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNAlo-0006cY-RI for submit@debbugs.gnu.org; Thu, 28 Aug 2014 21:14:29 -0400 Received: from mail-pa0-f41.google.com ([209.85.220.41]:41406) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNAlm-0006cI-Sv for 18341@debbugs.gnu.org; Thu, 28 Aug 2014 21:14:27 -0400 Received: by mail-pa0-f41.google.com with SMTP id lj1so4781847pab.28 for <18341@debbugs.gnu.org>; Thu, 28 Aug 2014 18:14:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:face:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=pygGJv2ZR+tuA9/BRnuJe397iWpX3YWMvanypIC6v8Q=; b=AbHCfP3HeJ/L5eMxiDiZEmV4384JQXkC+orSKBZyoIscvinXxvtPU+j6Sk2k8AWTMB ZveVWQnf4yz++sGFdjSvRz4MFg7P7+HlCJkWmxevUQFoHoUTFaUYgRigupAjblAeaNCb vFcmdr6+yQJ4g1nuu2BlWF1/I7BD10u0decujK+DrgJ54n8uteQVvUBUs1miK6lTjLKp CL91Gtjs+mD9B+qGRcT7sGBtHP5nxJVF6hGzWl37sXWvd1PZ7fViJ2Tm8uHA8mSNH8sU 7WGv9P7PJ3iOx/xF2At+cp7Z7coaU8lBolkXLeTeBvMs/bt6nWS7Z42pPXj0yOZcKWa8 Fn2Q== X-Received: by 10.70.91.73 with SMTP id cc9mr11361318pdb.138.1409274860613; Thu, 28 Aug 2014 18:14:20 -0700 (PDT) Received: from fortuna ([221.222.148.29]) by mx.google.com with ESMTPSA id o2sm7539803pde.30.2014.08.28.18.14.18 for (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Thu, 28 Aug 2014 18:14:19 -0700 (PDT) From: Leo Liu To: Stefan Monnier Subject: Re: bug#18341: 24.4.50; [patch] control where hook is added minibuffer-with-setup-hook References: Face: iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAGFBMVEUKDAg1NjRWV1V9fnyg op/DxcLk5uP8/voi63ReAAAACXBIWXMAAAWJAAAFiQFtaJ36AAAAB3RJTUUH1goZAgAz00bgXgAA AeVJREFUKM9lk0Fz2jAQhQXJD3CCO70CmcC1YMtcWyTZ14Bl69xats4N9r6/3zWQBlodNKNPu/s0 b1cCQFuZGpfVVh3vAvBJolIXRkapSuoRUtIdFyo1Y5xSdlAj7OtvD1XnXxmWRi+eWgcxyCed1lVV B1CrKyujMoi+eLA5kU1SsjoHlW+nQjTtFxk4MXgrOxvIqzoTZR8XgPaLl419zgsMaSGFPiUOZCIh thsx5Xy9NsK8Kwf/JoQgMxcVJ301HKkcSWaT0O7FY056J4U9xcYfnmVXG4801lW6lqwu2nKFZoHC HuzvaTVndZ+LaRQgZdthXw1cpynEkLEwyFHXk/aIxNQ6QeooJuzPMB+wn+D7JJNsiCcVA13/A3h/ xE9J+WidpAwoYNmRFwyvSRhNVtsdaAewzZZP5uw82QL9+tyNfocyP0McAzICUr5Mk9RdIjWasUNx aIIt6NK4ZtXIMdfMQt3nuMAyWbLI4DqZ4xPq/ag8jPond4XU/cLuOgw6XCFX/YCUfcDAMMH58fD4 G9kDchwfqVefkBwup2uZM+Q4WhJt5jN3AxXCsaS2yXEDuWgS8VOzW0gFjhEPmLyFMKBFaLb1HRwc DiaKwx0EeTMRYnYPQRW3PP4HApvlMv0PttX5v/D6Aws3IOSEwzmLAAAAAElFTkSuQmCC Date: Fri, 29 Aug 2014 09:14:16 +0800 In-Reply-To: (Stefan Monnier's message of "Thu, 28 Aug 2014 09:12:26 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (CentOS 6.5) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 18341 Cc: 18341@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On 2014-08-28 09:12 -0400, Stefan Monnier wrote: > Maybe a simpler change is to let FUN be of the form (:append FUN). Make sense ;) === modified file 'lisp/files.el' --- lisp/files.el 2014-08-12 02:35:24 +0000 +++ lisp/files.el 2014-08-29 01:11:08 +0000 @@ -1375,6 +1375,9 @@ (defmacro minibuffer-with-setup-hook (fun &rest body) "Temporarily add FUN to `minibuffer-setup-hook' while executing BODY. +FUN can also (:append FUN1), in which case FUN1 is appended to +`minibuffer-setup-hook'. + BODY should use the minibuffer at most once. Recursive uses of the minibuffer are unaffected (FUN is not called additional times). @@ -1383,7 +1386,11 @@ rather than FUN itself, to `minibuffer-setup-hook'." (declare (indent 1) (debug t)) (let ((hook (make-symbol "setup-hook")) - (funsym (make-symbol "fun"))) + (funsym (make-symbol "fun")) + (append nil)) + (when (eq (car-safe fun) :append) + (setq append t) + (pop fun)) `(let ((,funsym ,fun) ,hook) (setq ,hook @@ -1394,7 +1401,7 @@ (funcall ,funsym))) (unwind-protect (progn - (add-hook 'minibuffer-setup-hook ,hook) + (add-hook 'minibuffer-setup-hook ,hook ,append) ,@body) (remove-hook 'minibuffer-setup-hook ,hook))))) From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 22:03:50 2014 Received: (at 18341) by debbugs.gnu.org; 29 Aug 2014 02:03:50 +0000 Received: from localhost ([127.0.0.1]:52981 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNBXa-0007pY-6X for submit@debbugs.gnu.org; Thu, 28 Aug 2014 22:03:50 -0400 Received: from chene.dit.umontreal.ca ([132.204.246.20]:49416) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNBXY-0007pQ-AH for 18341@debbugs.gnu.org; Thu, 28 Aug 2014 22:03:48 -0400 Received: from fmsmemgm.homelinux.net (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id s7T23lOq026951; Thu, 28 Aug 2014 22:03:47 -0400 Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 2547AAE88E; Thu, 28 Aug 2014 22:03:47 -0400 (EDT) From: Stefan Monnier To: Leo Liu Subject: Re: bug#18341: 24.4.50; [patch] control where hook is added minibuffer-with-setup-hook Message-ID: References: Date: Thu, 28 Aug 2014 22:03:47 -0400 In-Reply-To: (Leo Liu's message of "Fri, 29 Aug 2014 09:14:16 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5047=0 X-NAI-Spam-Version: 2.3.0.9378 : core <5047> : inlines <1220> : streams <1276341> : uri <1807844> X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: 18341 Cc: 18341@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.3 (-) > + (when (eq (car-safe fun) :append) > + (setq append t) Please make it '(t) so you can use ,@append and get marginally cleaner macroexpanded code when :append is not used. > + (pop fun)) I think this implements (:append . FUN) rather than (:append FUN). Other than that, feel free to install into trunk. Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 22:52:02 2014 Received: (at 18341-done) by debbugs.gnu.org; 29 Aug 2014 02:52:02 +0000 Received: from localhost ([127.0.0.1]:52995 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNCID-0000bo-Sp for submit@debbugs.gnu.org; Thu, 28 Aug 2014 22:52:02 -0400 Received: from mail-pa0-f42.google.com ([209.85.220.42]:53439) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNCIA-0000bS-Rl for 18341-done@debbugs.gnu.org; Thu, 28 Aug 2014 22:51:59 -0400 Received: by mail-pa0-f42.google.com with SMTP id lf10so5099278pab.1 for <18341-done@debbugs.gnu.org>; Thu, 28 Aug 2014 19:51:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:face:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=/Lq8B1nmI92jPYR4QScCgx1lUX06GaKuBXDazlFSnEI=; b=B/I8v4MnJce8r1aH3xB/b4mxHpPHZobkxc/tLSz7f+4DbRxf3++Bkh1kqfNCBWtQ9z FxyPEUNaev7EMq+lq/esJxXmjbTWdlPv/VNSKJFrLK1i8Zkoufp79k74F8h8Pswx7Ru0 t/tDz4RyEuyWzct0r/vVrw6l9PBSBy+LMfcIVelPkU2Z723gD3UiC7EW0HYxcxy9/5xW 5sDdy/7JvNwDvsyKigWTyeaSqbZa5GnaZcSO59qISXiFwnuuRB9/gJLaXMUL1XF3u9nu aTOAw4ZvDzoNrPT1W3zg7lhAJPN0ewpjY4XYcF9oGG0yuXoThq7ddW4x8k3PhkZegXyX 5jwg== X-Received: by 10.66.222.97 with SMTP id ql1mr11534599pac.119.1409280712606; Thu, 28 Aug 2014 19:51:52 -0700 (PDT) Received: from fortuna ([221.222.148.29]) by mx.google.com with ESMTPSA id d15sm7847423pdj.11.2014.08.28.19.51.50 for (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Thu, 28 Aug 2014 19:51:52 -0700 (PDT) From: Leo Liu To: Stefan Monnier Subject: Re: bug#18341: 24.4.50; [patch] control where hook is added minibuffer-with-setup-hook References: Face: iVBORw0KGgoAAAANSUhEUgAAACkAAAApAQAAAACAGz1bAAABKElEQVQYlWNg3NIt5FDPUPt7 4+X79Qyucz5/ugik+L2PBgKpyphaIK921q23QDnG0NBQoMr/vaWl9f8ZLL78uPv5PwN7RETfzXoG jhmFz27XM0RXmpuY/WfY+fv0Mc56BvFybfXA/wwL5t/wF61n2PU59axXPcOVzbmSW/8zrNt1benC /ww70hqUU/4zKCtrT9jwn8FhwynbufUMendE2aLqGRpdX9al1zM8eh17lKeeQcTMrdD5P8P3j/YT Q/8zXHSb7p1Qz/C4OM2JuZ7hgtI7K6AjqsMnf8j4z8C6xG1tw3+GqpqvsVn/GTzmpD9j/8/wP/oZ S/l/Bka+QO/g/wy15ueeFQL9N1O8mPU/g+umV3t1gdT0/1bTgHLqYVeXAlWKpMWt+w8Az82C9nHf X0cAAAAASUVORK5CYII= Date: Fri, 29 Aug 2014 10:51:48 +0800 In-Reply-To: (Stefan Monnier's message of "Thu, 28 Aug 2014 22:03:47 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (CentOS 6.5) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 18341-done Cc: 18341-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) version: 24.5 On 2014-08-28 22:03 -0400, Stefan Monnier wrote: > Please make it '(t) so you can use ,@append and get marginally cleaner > macroexpanded code when :append is not used. > >> + (pop fun)) > > I think this implements (:append . FUN) rather than (:append FUN). > Other than that, feel free to install into trunk. Thanks for these comments and sorry for my mistakes. Leo From unknown Fri Jun 20 07:29:34 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 26 Sep 2014 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 04 12:35:32 2014 Received: (at control) by debbugs.gnu.org; 4 Oct 2014 16:35:32 +0000 Received: from localhost ([127.0.0.1]:33183 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XaSIt-0002m9-8U for submit@debbugs.gnu.org; Sat, 04 Oct 2014 12:35:31 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:60039) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XaSIr-0002lz-Gi for control@debbugs.gnu.org; Sat, 04 Oct 2014 12:35:29 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1XaSIq-0005r2-MO; Sat, 04 Oct 2014 12:35:28 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21552.8656.554316.921175@gnu.org> Date: Sat, 4 Oct 2014 12:35:28 -0400 From: Glenn Morris To: GNU bug tracker automated control server Subject: Update Emacs archived fixed bugs for 24.5 version number change X-Debbugs-No-Ack: yes X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) unarchive 18304 fixed 18304 25.1 notfixed 18304 24.5 unarchive 12008 fixed 12008 25.1 notfixed 12008 24.5 unarchive 17110 fixed 17110 25.1 notfixed 17110 24.5 unarchive 17218 fixed 17218 25.1 notfixed 17218 24.5 unarchive 18222 fixed 18222 25.1 notfixed 18222 24.5 unarchive 18023 fixed 18023 25.1 notfixed 18023 24.5 unarchive 17225 fixed 17225 25.1 notfixed 17225 24.5 unarchive 16626 fixed 16626 25.1 notfixed 16626 24.5 unarchive 18326 fixed 18326 25.1 notfixed 18326 24.5 unarchive 18227 fixed 18227 25.1 notfixed 18227 24.5 unarchive 16328 fixed 16328 25.1 notfixed 16328 24.5 unarchive 17333 fixed 17333 25.1 notfixed 17333 24.5 unarchive 13837 fixed 13837 25.1 notfixed 13837 24.5 unarchive 17641 fixed 17641 25.1 notfixed 17641 24.5 unarchive 18341 fixed 18341 25.1 notfixed 18341 24.5 unarchive 18349 fixed 18349 25.1 notfixed 18349 24.5 unarchive 2151 fixed 2151 25.1 notfixed 2151 24.5 unarchive 5853 fixed 5853 25.1 notfixed 5853 24.5 unarchive 17857 fixed 17857 25.1 notfixed 17857 24.5 unarchive 17858 fixed 17858 25.1 notfixed 17858 24.5 unarchive 17859 fixed 17859 25.1 notfixed 17859 24.5 unarchive 17160 fixed 17160 25.1 notfixed 17160 24.5 unarchive 2263 fixed 2263 25.1 notfixed 2263 24.5 unarchive 18368 fixed 18368 25.1 notfixed 18368 24.5 unarchive 17772 fixed 17772 25.1 notfixed 17772 24.5 unarchive 17276 fixed 17276 25.1 notfixed 17276 24.5 unarchive 15991 fixed 15991 25.1 notfixed 15991 24.5 unarchive 17699 fixed 17699 25.1 notfixed 17699 24.5 From unknown Fri Jun 20 07:29:34 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 02 Nov 2014 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator