GNU bug report logs - #22773
25.1.50; Some Gnus Variables not working anymore

Previous Next

Package: emacs;

Reported by: gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias)

Date: Mon, 22 Feb 2016 17:53:01 UTC

Severity: normal

Found in version 25.1.50

Done: gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias)

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 22773 in the body.
You can then email your comments to 22773 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#22773; Package emacs. (Mon, 22 Feb 2016 17:53:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias):
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Mon, 22 Feb 2016 17:53:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias)
To: bug-gnu-emacs <at> gnu.org
Subject: 25.1.50; Some Gnus Variables not working anymore
Date: Mon, 22 Feb 2016 18:51:34 +0100
Hi,

message-dont-reply-to-names is broken in emacs master by commit:

357ae5dba5faac5ff48ebb971cb29500f87f02a6

In GNU Emacs 25.1.50.2 (x86_64-pc-linux-gnu, GTK+ Version 3.16.7)
 of 2016-02-22 built on lgw01-25
Windowing system distributor 'The X.Org Foundation', version 11.0.11702000
System Description:	Ubuntu 15.10

E.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22773; Package emacs. (Tue, 23 Feb 2016 01:22:02 GMT) Full text and rfc822 format available.

Message #8 received at 22773 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias)
Cc: 22773 <at> debbugs.gnu.org
Subject: Re: bug#22773: 25.1.50; Some Gnus Variables not working anymore
Date: Tue, 23 Feb 2016 12:21:04 +1100
gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias) writes:

> message-dont-reply-to-names is broken in emacs master by commit:
>
> 357ae5dba5faac5ff48ebb971cb29500f87f02a6

In what way is it broken?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22773; Package emacs. (Tue, 23 Feb 2016 08:41:02 GMT) Full text and rfc822 format available.

Message #11 received at 22773 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Schwab <schwab <at> suse.de>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: Emilio Jesús Gallego Arias <gallego <at> cri.ensmp.fr>,
 22773 <at> debbugs.gnu.org
Subject: Re: bug#22773: 25.1.50; Some Gnus Variables not working anymore
Date: Tue, 23 Feb 2016 09:40:00 +0100
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias) writes:
>
>> message-dont-reply-to-names is broken in emacs master by commit:
>>
>> 357ae5dba5faac5ff48ebb971cb29500f87f02a6
>
> In what way is it broken?

That looks wrong:

 (defsubst message-dont-reply-to-names ()
-  (gmm-regexp-concat message-dont-reply-to-names))
+  (cond ((functionp message-dont-reply-to-names)
+         message-dont-reply-to-names)
+        ((stringp message-dont-reply-to-names)
+         (gmm-regexp-concat message-dont-reply-to-names))))

It now returns nil if message-dont-reply-to-names is a list.

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab <at> suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22773; Package emacs. (Tue, 23 Feb 2016 09:53:02 GMT) Full text and rfc822 format available.

Message #14 received at 22773 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Andreas Schwab <schwab <at> suse.de>
Cc: Emilio Jesús Gallego Arias <gallego <at> cri.ensmp.fr>,
 22773 <at> debbugs.gnu.org
Subject: Re: bug#22773: 25.1.50; Some Gnus Variables not working anymore
Date: Tue, 23 Feb 2016 20:51:57 +1100
Andreas Schwab <schwab <at> suse.de> writes:

> That looks wrong:
>
>  (defsubst message-dont-reply-to-names ()
> -  (gmm-regexp-concat message-dont-reply-to-names))
> +  (cond ((functionp message-dont-reply-to-names)
> +         message-dont-reply-to-names)
> +        ((stringp message-dont-reply-to-names)
> +         (gmm-regexp-concat message-dont-reply-to-names))))
>
> It now returns nil if message-dont-reply-to-names is a list.

Ah, thanks.  I'll fix that...

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22773; Package emacs. (Tue, 23 Feb 2016 09:56:01 GMT) Full text and rfc822 format available.

Message #17 received at 22773 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias)
Cc: 22773 <at> debbugs.gnu.org
Subject: Re: bug#22773: 25.1.50; Some Gnus Variables not working anymore
Date: Tue, 23 Feb 2016 20:55:26 +1100
gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias) writes:

> message-dont-reply-to-names is broken in emacs master by commit:

I've now pushed something I think will fix this.  Could you update and
see whether it works now?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Reply sent to gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias):
You have taken responsibility. (Wed, 24 Feb 2016 19:52:03 GMT) Full text and rfc822 format available.

Notification sent to gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias):
bug acknowledged by developer. (Wed, 24 Feb 2016 19:52:03 GMT) Full text and rfc822 format available.

Message #22 received at 22773-close <at> debbugs.gnu.org (full text, mbox):

From: gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias)
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 22773-close <at> debbugs.gnu.org
Subject: Re: bug#22773: 25.1.50; Some Gnus Variables not working anymore
Date: Wed, 24 Feb 2016 20:51:10 +0100
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias) writes:
>
>> message-dont-reply-to-names is broken in emacs master by commit:
>
> I've now pushed something I think will fix this.  Could you update and
> see whether it works now?

It seems fixed now, thanks !




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22773; Package emacs. (Wed, 24 Feb 2016 23:38:01 GMT) Full text and rfc822 format available.

Message #25 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Rasmus <rasmus <at> gmx.us>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#22773: 25.1.50; Some Gnus Variables not working anymore
Date: Thu, 25 Feb 2016 00:37:23 +0100
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> gallego <at> cri.ensmp.fr (Emilio Jesús Gallego Arias) writes:
>
>> message-dont-reply-to-names is broken in emacs master by commit:
>
> I've now pushed something I think will fix this.  Could you update and
> see whether it works now?

Thanks for fixing it Lars.  I saw this bug too late.  Thanks for reporting
it Emilio.

Rasmus

-- 
You people at the NSA are becoming my new best friends!





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 24 Mar 2016 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 9 years and 93 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.