Bug#1104316: Minor bug in dh-elpa.el regex

2025-04-28 Thread Xiyue Deng
Control: tags -1 pending. Sean Whitton writes: > Hello, > > Thanks both. Xiyue, please merge the fix to master. > Done. Will be included in the next upload. > -- > Sean Whitton -- Regards, Xiyue Deng signature.asc Description: PGP signature

Bug#1104316: Minor bug in dh-elpa.el regex

2025-04-28 Thread Sean Whitton
Hello, Thanks both. Xiyue, please merge the fix to master. -- Sean Whitton signature.asc Description: PGP signature

Bug#1104316: Minor bug in dh-elpa.el regex

2025-04-28 Thread John Zaitseff
Hi, Xiyue Deng, > > I believe I've found a minor bug in dh-elpa.el [...] > > Thanks for the report! This is indeed an issue. Though according > to Emacs regexp specs, to include "-" it should be the last > character in the brackets[1]. A proposed fix is in pushed to a > branch and the diff can

Bug#1104316: Minor bug in dh-elpa.el regex

2025-04-28 Thread Xiyue Deng
Hi John, John Zaitseff writes: > Package: dh-elpa-helper > Version: 2.1.9 > > I believe I've found a minor bug in dh-elpa.el: the regex for > handling "git" version strings uses "[+-~]git.*$", which covers most > of ASCII for the first character. Shouldn't that read "[-+~]git.*$" > instead, to

Bug#1104316: Minor bug in dh-elpa.el regex

2025-04-28 Thread John Zaitseff
Package: dh-elpa-helper Version: 2.1.9 I believe I've found a minor bug in dh-elpa.el: the regex for handling "git" version strings uses "[+-~]git.*$", which covers most of ASCII for the first character. Shouldn't that read "[-+~]git.*$" instead, to match only "-", "+" and "~"? I'm attaching a p