From unknown Mon Jun 23 11:25:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions Resent-From: Tim Landscheidt Original-Sender: "Debbugs-submit" Resent-CC: ulf.jasper@web.de, bug-gnu-emacs@gnu.org Resent-Date: Fri, 27 Oct 2017 05:20:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 29023 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 29023@debbugs.gnu.org Cc: Ulf Jasper X-Debbugs-Original-To: bug-gnu-emacs@gnu.org X-Debbugs-Original-Xcc: Ulf Jasper Received: via spool by submit@debbugs.gnu.org id=B.150908155323838 (code B ref -1); Fri, 27 Oct 2017 05:20:01 +0000 Received: (at submit) by debbugs.gnu.org; 27 Oct 2017 05:19:13 +0000 Received: from localhost ([127.0.0.1]:35868 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e7x32-0006CQ-Sm for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:13 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47373) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e7x31-0006CB-P4 for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e7x2v-0004lw-Kt for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:06 -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.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50920) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e7x2v-0004lm-I4 for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:05 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38329) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e7x2u-0000wq-F5 for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 01:19:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e7x2r-0004gr-A5 for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 01:19:04 -0400 Received: from mezzogiorno.tim-landscheidt.de ([78.47.87.37]:33423) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e7x2r-0004Yu-3D for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 01:19:01 -0400 Received: from x4e369cab.dyn.telefonica.de ([78.54.156.171]:50054 helo=passepartout.tim-landscheidt.de) by mezzogiorno.tim-landscheidt.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1e7x2c-0006NC-Qf for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 05:18:46 +0000 From: Tim Landscheidt Organization: http://www.tim-landscheidt.de/ Date: Fri, 27 Oct 2017 05:18:41 +0000 Message-ID: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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.1 (----) (newsticker) Automatic Processing says: | [=E2=80=A6] | In order to do so write a function which takes three arguments | FEED | the name of the corresponding news feed, | TITLE | the title of the headline, | DESC | the decoded description of the headline. | and add it to =E2=80=98newsticker-new-item-functions=E2=80=99. [=E2= =80=A6] newsticker-new-item-functions's docstring says: | List of functions run after a new headline has been retrieved. | Each function is called with the following three arguments: | FEED the name of the corresponding news feed, | TITLE the title of the headline, | DESC the decoded description of the headline. However the functions "Hook samples" in newst-backend.el are all defined as: | [=E2=80=A6] | (defun newsticker-new-item-functions-sample (feed item) | [=E2=80=A6] | (defun newsticker-download-images (feed item) | [=E2=80=A6] | (defun newsticker-download-enclosures (feed item) | [=E2=80=A6] i. e. they take two arguments, not three. Also, there is no explicit documentation if the functions' return values matter (AFAIUI they are ignored). In addition, newsticker-new-item-functions's docstring re- commends: | [=E2=80=A6] | See =E2=80=98newsticker-download-images=E2=80=99, and | =E2=80=98newsticker-download-enclosures=E2=80=99 for sample functions. | [=E2=80=A6] It might be useful to add newsticker-new-item-functions-*sample* to that list :-). From unknown Mon Jun 23 11:25:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions Resent-From: Ulf Jasper Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 27 Oct 2017 11:31:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 29023 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Tim Landscheidt Cc: 29023@debbugs.gnu.org, 29023-done@debbugs.gnu.org Received: via spool by 29023-submit@debbugs.gnu.org id=B29023.15091038414263 (code B ref 29023); Fri, 27 Oct 2017 11:31:01 +0000 Received: (at 29023) by debbugs.gnu.org; 27 Oct 2017 11:30:41 +0000 Received: from localhost ([127.0.0.1]:36004 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e82qW-00016N-LM for submit@debbugs.gnu.org; Fri, 27 Oct 2017 07:30:40 -0400 Received: from mout.web.de ([212.227.17.12]:54835) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e82qV-0000yK-9o; Fri, 27 Oct 2017 07:30:39 -0400 Received: from p55m-ud2 ([217.226.70.186]) by smtp.web.de (mrweb101 [213.165.67.124]) with ESMTPSA (Nemesis) id 0MDxKd-1dxKwO1XeJ-00HRvA; Fri, 27 Oct 2017 13:30:27 +0200 From: Ulf Jasper References: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> Date: Fri, 27 Oct 2017 13:30:26 +0200 In-Reply-To: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> (Tim Landscheidt's message of "Fri, 27 Oct 2017 05:18:41 +0000") Message-ID: <87lgjw96b1.fsf@web.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:SkU1u2b/RV8+Z5QzkOikNRf6IcXWeGwTxBTxm5U9KF1g5UBHiOL owgy6DXeb7eAwh6JzR9/QOxo3zkmqqVc3jD//zwEaWWNj8muiyYF3jXR2aGV7z9QGlT7U8n /CpsFuZ7sUKalKWbacmquA3dXLgykEGyA0BMVfNBzTZKdiqKmdJJvSSTEoqcMhtTd8Fag8w 1yQiYi2I1jRBs0erdIVAA== X-UI-Out-Filterresults: notjunk:1;V01:K0:i77a9tDoPso=:UEqePXhqW+345BweQ5DJeL DrEQd/x+Ms6NcAk59imKu4XWLGEvgT7Hzno4YXdb2yR0CK/jd9gvGqf5ZDJuRbmOh8dJnS7Bo cRF+tVl+XcOjv93NKauPTmQ71VVZ5tetLU58ztcJUQb4ZMlRXxbuVUXUYyGbqRU3ocXGGBYTo ardxhMQkHkMKvdkDv4nn1M0uqkT2AxOefsoA1+mWmu+bLf7uLJo4IefXfN97hv1LRo0A8YDWI VwbAZNfh/YdpVpUWUxoRV7bnzkiPcb2W/JDKNOOjfLF/iVkNwaW62osYkaNxl0P0ixnYUGDVJ EBE1m0DBrI0dAt8iuRa+qUz4MAmYTqBvc8V2Z8EKSKXLBv/K8F6mH0anSf1uGVuBYThAWPHe9 MVo2SmRGapX2PMBWTVWoj/ikK0xZYpAqau+oxo6HFdd11c8Bzw0oOVNX2IskTCWp0ipd+SHHW L8/qDI5IkA8pgmeaZwc0IXowzTsBLFaLsIbhTJtB7BveLPrlLx0OinXKGAQhK03lWQ3VZCwpz m5Ha5X1c2+QfoYfYYoxqoIm1RLZybUm4mjVwDVGvMblGN0nd3wE7udX7toVkiUi3IZN8+m9TQ HYoFzyliDcj8fTTXa9194BhX8MGKaC7R/PBCvLmz/Ug8rhmwEiX2BCcSRxQLckC6Zn5Ln9CR+ Zyu2XqNsGKbWz+pIlLcDrRWZtpC7PvtxF5WawW469lTyhqQBheD/nW6IANFgUAElr29/sRWwZ FEJYVa2jNEs9iunxYksFHfVQd73/t2NRf57TLGJSmc55UyEZe7ykJ2cUpyDWMCY9Gb3EJxHEJ 6ehWPV/4umBxSqgWxaImkDO7s6E1mcI2BazkE9Vih9f+UJLqHU= X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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 (/) Thanks for reporting this. Fixed on master. From unknown Mon Jun 23 11:25:56 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Tim Landscheidt Subject: bug#29023: closed (Re: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions) Message-ID: References: <87lgjw96b1.fsf@web.de> <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> X-Gnu-PR-Message: they-closed 29023 X-Gnu-PR-Package: emacs Reply-To: 29023@debbugs.gnu.org Date: Fri, 27 Oct 2017 11:31:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1509103862-5693-1" This is a multi-part message in MIME format... ------------=_1509103862-5693-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item= -functions which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 29023@debbugs.gnu.org. --=20 29023: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D29023 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1509103862-5693-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 29023-done) by debbugs.gnu.org; 27 Oct 2017 11:30:40 +0000 Received: from localhost ([127.0.0.1]:36002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e82qW-000167-BW for submit@debbugs.gnu.org; Fri, 27 Oct 2017 07:30:40 -0400 Received: from mout.web.de ([212.227.17.12]:54835) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e82qV-0000yK-9o; Fri, 27 Oct 2017 07:30:39 -0400 Received: from p55m-ud2 ([217.226.70.186]) by smtp.web.de (mrweb101 [213.165.67.124]) with ESMTPSA (Nemesis) id 0MDxKd-1dxKwO1XeJ-00HRvA; Fri, 27 Oct 2017 13:30:27 +0200 From: Ulf Jasper To: Tim Landscheidt Subject: Re: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions References: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> Date: Fri, 27 Oct 2017 13:30:26 +0200 In-Reply-To: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> (Tim Landscheidt's message of "Fri, 27 Oct 2017 05:18:41 +0000") Message-ID: <87lgjw96b1.fsf@web.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:SkU1u2b/RV8+Z5QzkOikNRf6IcXWeGwTxBTxm5U9KF1g5UBHiOL owgy6DXeb7eAwh6JzR9/QOxo3zkmqqVc3jD//zwEaWWNj8muiyYF3jXR2aGV7z9QGlT7U8n /CpsFuZ7sUKalKWbacmquA3dXLgykEGyA0BMVfNBzTZKdiqKmdJJvSSTEoqcMhtTd8Fag8w 1yQiYi2I1jRBs0erdIVAA== X-UI-Out-Filterresults: notjunk:1;V01:K0:i77a9tDoPso=:UEqePXhqW+345BweQ5DJeL DrEQd/x+Ms6NcAk59imKu4XWLGEvgT7Hzno4YXdb2yR0CK/jd9gvGqf5ZDJuRbmOh8dJnS7Bo cRF+tVl+XcOjv93NKauPTmQ71VVZ5tetLU58ztcJUQb4ZMlRXxbuVUXUYyGbqRU3ocXGGBYTo ardxhMQkHkMKvdkDv4nn1M0uqkT2AxOefsoA1+mWmu+bLf7uLJo4IefXfN97hv1LRo0A8YDWI VwbAZNfh/YdpVpUWUxoRV7bnzkiPcb2W/JDKNOOjfLF/iVkNwaW62osYkaNxl0P0ixnYUGDVJ EBE1m0DBrI0dAt8iuRa+qUz4MAmYTqBvc8V2Z8EKSKXLBv/K8F6mH0anSf1uGVuBYThAWPHe9 MVo2SmRGapX2PMBWTVWoj/ikK0xZYpAqau+oxo6HFdd11c8Bzw0oOVNX2IskTCWp0ipd+SHHW L8/qDI5IkA8pgmeaZwc0IXowzTsBLFaLsIbhTJtB7BveLPrlLx0OinXKGAQhK03lWQ3VZCwpz m5Ha5X1c2+QfoYfYYoxqoIm1RLZybUm4mjVwDVGvMblGN0nd3wE7udX7toVkiUi3IZN8+m9TQ HYoFzyliDcj8fTTXa9194BhX8MGKaC7R/PBCvLmz/Ug8rhmwEiX2BCcSRxQLckC6Zn5Ln9CR+ Zyu2XqNsGKbWz+pIlLcDrRWZtpC7PvtxF5WawW469lTyhqQBheD/nW6IANFgUAElr29/sRWwZ FEJYVa2jNEs9iunxYksFHfVQd73/t2NRf57TLGJSmc55UyEZe7ykJ2cUpyDWMCY9Gb3EJxHEJ 6ehWPV/4umBxSqgWxaImkDO7s6E1mcI2BazkE9Vih9f+UJLqHU= X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29023-done Cc: 29023@debbugs.gnu.org, 29023-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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 (/) Thanks for reporting this. Fixed on master. ------------=_1509103862-5693-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 27 Oct 2017 05:19:13 +0000 Received: from localhost ([127.0.0.1]:35868 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e7x32-0006CQ-Sm for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:13 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47373) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e7x31-0006CB-P4 for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e7x2v-0004lw-Kt for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:06 -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.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50920) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e7x2v-0004lm-I4 for submit@debbugs.gnu.org; Fri, 27 Oct 2017 01:19:05 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38329) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e7x2u-0000wq-F5 for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 01:19:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e7x2r-0004gr-A5 for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 01:19:04 -0400 Received: from mezzogiorno.tim-landscheidt.de ([78.47.87.37]:33423) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e7x2r-0004Yu-3D for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 01:19:01 -0400 Received: from x4e369cab.dyn.telefonica.de ([78.54.156.171]:50054 helo=passepartout.tim-landscheidt.de) by mezzogiorno.tim-landscheidt.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1e7x2c-0006NC-Qf for bug-gnu-emacs@gnu.org; Fri, 27 Oct 2017 05:18:46 +0000 From: Tim Landscheidt To: bug-gnu-emacs@gnu.org Subject: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions Organization: http://www.tim-landscheidt.de/ X-Debbugs-CC: Ulf Jasper Date: Fri, 27 Oct 2017 05:18:41 +0000 Message-ID: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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.1 (----) (newsticker) Automatic Processing says: | [=E2=80=A6] | In order to do so write a function which takes three arguments | FEED | the name of the corresponding news feed, | TITLE | the title of the headline, | DESC | the decoded description of the headline. | and add it to =E2=80=98newsticker-new-item-functions=E2=80=99. [=E2= =80=A6] newsticker-new-item-functions's docstring says: | List of functions run after a new headline has been retrieved. | Each function is called with the following three arguments: | FEED the name of the corresponding news feed, | TITLE the title of the headline, | DESC the decoded description of the headline. However the functions "Hook samples" in newst-backend.el are all defined as: | [=E2=80=A6] | (defun newsticker-new-item-functions-sample (feed item) | [=E2=80=A6] | (defun newsticker-download-images (feed item) | [=E2=80=A6] | (defun newsticker-download-enclosures (feed item) | [=E2=80=A6] i. e. they take two arguments, not three. Also, there is no explicit documentation if the functions' return values matter (AFAIUI they are ignored). In addition, newsticker-new-item-functions's docstring re- commends: | [=E2=80=A6] | See =E2=80=98newsticker-download-images=E2=80=99, and | =E2=80=98newsticker-download-enclosures=E2=80=99 for sample functions. | [=E2=80=A6] It might be useful to add newsticker-new-item-functions-*sample* to that list :-). ------------=_1509103862-5693-1-- From unknown Mon Jun 23 11:25:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 27 Oct 2017 12:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 29023 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Ulf Jasper Cc: 29023@debbugs.gnu.org, tim@tim-landscheidt.de Reply-To: Eli Zaretskii Received: via spool by 29023-submit@debbugs.gnu.org id=B29023.150910643912912 (code B ref 29023); Fri, 27 Oct 2017 12:14:02 +0000 Received: (at 29023) by debbugs.gnu.org; 27 Oct 2017 12:13:59 +0000 Received: from localhost ([127.0.0.1]:36047 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e83WR-0003MC-JW for submit@debbugs.gnu.org; Fri, 27 Oct 2017 08:13:59 -0400 Received: from eggs.gnu.org ([208.118.235.92]:39595) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e83WQ-0003M0-AY for 29023@debbugs.gnu.org; Fri, 27 Oct 2017 08:13:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e83WH-0000Tu-87 for 29023@debbugs.gnu.org; Fri, 27 Oct 2017 08:13:53 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:56347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e83WH-0000Tq-4t; Fri, 27 Oct 2017 08:13:49 -0400 Received: from [176.228.60.248] (port=3185 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1e83WG-0002zW-HG; Fri, 27 Oct 2017 08:13:48 -0400 Date: Fri, 27 Oct 2017 15:13:40 +0300 Message-Id: <83fua47pqj.fsf@gnu.org> From: Eli Zaretskii In-reply-to: <87lgjw96b1.fsf@web.de> (message from Ulf Jasper on Fri, 27 Oct 2017 13:30:26 +0200) References: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> <87lgjw96b1.fsf@web.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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 (-----) > From: Ulf Jasper > Date: Fri, 27 Oct 2017 13:30:26 +0200 > Cc: 29023@debbugs.gnu.org, 29023-done@debbugs.gnu.org > > Thanks for reporting this. Fixed on master. Thanks, but I think this should have been fixed on the release branch instead. Could you please cherry-pick your commit to the emacs-26 branch? From unknown Mon Jun 23 11:25:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions Resent-From: Ulf Jasper Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 27 Oct 2017 12:50:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 29023 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 29023@debbugs.gnu.org, tim@tim-landscheidt.de Received: via spool by 29023-submit@debbugs.gnu.org id=B29023.150910856423534 (code B ref 29023); Fri, 27 Oct 2017 12:50:01 +0000 Received: (at 29023) by debbugs.gnu.org; 27 Oct 2017 12:49:24 +0000 Received: from localhost ([127.0.0.1]:36073 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e844i-00067W-L8 for submit@debbugs.gnu.org; Fri, 27 Oct 2017 08:49:24 -0400 Received: from mout.web.de ([217.72.192.78]:58078) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e844h-00067I-31 for 29023@debbugs.gnu.org; Fri, 27 Oct 2017 08:49:23 -0400 Received: from p55m-ud2 ([217.226.70.186]) by smtp.web.de (mrweb103 [213.165.67.124]) with ESMTPSA (Nemesis) id 0MMmt1-1e69Kj3QJr-008Xiw; Fri, 27 Oct 2017 14:49:10 +0200 From: Ulf Jasper References: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> <87lgjw96b1.fsf@web.de> <83fua47pqj.fsf@gnu.org> Date: Fri, 27 Oct 2017 14:49:10 +0200 In-Reply-To: <83fua47pqj.fsf@gnu.org> (Eli Zaretskii's message of "Fri, 27 Oct 2017 15:13:40 +0300") Message-ID: <87h8uk92nt.fsf@web.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:92qbwBPWgB/k1Eg5H9iDfIqMK2o+YEv1z4oACmCxZEdzTlrQTf3 jl14jm+BpHVe72qbC9KEKRVkvJvPeEejf7LTeXscniydANgjG7PYC+ngF8QtGwxwcStcndP MqhDzDYBHkWxmFZWyHLf25OuWSRsJIZqvADhwlNcC65DxHr/mKtfNNEt9I9MqzHbz/xdY/n YBMCFvqMUdbOgGJ/9alNQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:pm4oZxBPaSM=:B7V9sa5uGhheYAu1EEDN9p 0iboQ/YrMxilPikXIm4HlI5f8LiD3uOBd6htMetIVa9OvXi2vEkS2HihzUVwsDz9pTOyqub8h rMzPhf20fAyopxeN2e00EynOgaYdBnInt2MJQp/gG9p4xOBH+t8w4Sybz+xHgGWeZfJPEP4dw +608spua2g/2GMkBNzp7PJ18NNZ65E2nJg8ohPfsdEhJKJK5uj/X04rQIgtR5Ij3KajMq/Mf9 EJn4aO5IRRE2HORaA4griy7q3csw0YmXvX2K+gsNoeJOS3C65fm0Irjf618rh+2iTfUFQa8+Q ahU7LD/n4JFUY7ACIY3eqgEC9DjogLf+LoT6W+pD2D4sSExTgMFs7JJzng3ZKCorhs1WeqchP yieqhUtx0zUUeus8Q5QC3TgTfq6KDCB0yk+LbpvywMpnK7QSQeG1LjCmkrBfHIe8zTjmGr0UF v2MZnGgp0mg7go/cEI1UMeCdSHYm7xVuIvKTJn43pPfMQPpYZ6aLHWR1oMPllkUYYz2eblnyT riMxPh4ILLnIvxD+A+QG37YQ1CJhMPTwaBcqHJ1V/Xy/iws5Wxtp4DtTl28yNRlb4ZGh1ddU+ oKxNP4LHm/R6LtVJe9xYvFjNRmz3s54bOy4gHraPvSiJBala+bGbVIRGtgnyncAuosOL4SBQc iXXZWEU+YFmGnI0y2lMObdD2MnPGZjgcuIq5mcMqDxHDdolLBczU+H12Z0jP0bXrCalFZIfnf M/ORgEkVHEzGVQ6mzV7RXo6GAN+45FuckLsg6cmNUAWw3N1kVtPtwMEC0Sy1oaPO9niiBGctp 2u8wCt7BilOj3gh3QyWSt7FdHZS46hxkkkman3hRN9kb/cU5E4= X-Spam-Score: -3.5 (---) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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: -3.5 (---) Am 27.10.2017 um 15:13 (+0300) schrieb Eli Zaretskii: > Thanks, but I think this should have been fixed on the release branch > instead. Could you please cherry-pick your commit to the emacs-26 > branch? Done. From unknown Mon Jun 23 11:25:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#29023: 25.3; newsticker: Inconsistent documentation of newsticker-new-item-functions Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 27 Oct 2017 13:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 29023 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Ulf Jasper Cc: 29023@debbugs.gnu.org, tim@tim-landscheidt.de Reply-To: Eli Zaretskii Received: via spool by 29023-submit@debbugs.gnu.org id=B29023.15091106921749 (code B ref 29023); Fri, 27 Oct 2017 13:25:01 +0000 Received: (at 29023) by debbugs.gnu.org; 27 Oct 2017 13:24:52 +0000 Received: from localhost ([127.0.0.1]:36108 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e84d2-0000S8-Lr for submit@debbugs.gnu.org; Fri, 27 Oct 2017 09:24:52 -0400 Received: from eggs.gnu.org ([208.118.235.92]:57667) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e84d1-0000Rw-9Z for 29023@debbugs.gnu.org; Fri, 27 Oct 2017 09:24:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e84cs-0005E4-5p for 29023@debbugs.gnu.org; Fri, 27 Oct 2017 09:24:46 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:57336) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e84cs-0005Dk-1e; Fri, 27 Oct 2017 09:24:42 -0400 Received: from [176.228.60.248] (port=3537 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1e84cq-0000X6-Gj; Fri, 27 Oct 2017 09:24:41 -0400 Date: Fri, 27 Oct 2017 16:24:28 +0300 Message-Id: <83efpo7mgj.fsf@gnu.org> From: Eli Zaretskii In-reply-to: <87h8uk92nt.fsf@web.de> (message from Ulf Jasper on Fri, 27 Oct 2017 14:49:10 +0200) References: <8760b1p3ri.fsf@passepartout.tim-landscheidt.de> <87lgjw96b1.fsf@web.de> <83fua47pqj.fsf@gnu.org> <87h8uk92nt.fsf@web.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 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 (-----) > From: Ulf Jasper > Cc: tim@tim-landscheidt.de, 29023@debbugs.gnu.org > Date: Fri, 27 Oct 2017 14:49:10 +0200 > > Am 27.10.2017 um 15:13 (+0300) schrieb Eli Zaretskii: > > > Thanks, but I think this should have been fixed on the release branch > > instead. Could you please cherry-pick your commit to the emacs-26 > > branch? > > Done. Thanks.