GNU bug report logs -
#75310
Eliminate obsolete alias warning
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75310 in the body.
You can then email your comments to 75310 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Fri, 03 Jan 2025 11:42:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Peter Oliver <p.d.oliver <at> mavit.org.uk>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Fri, 03 Jan 2025 11:42:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
A patch is attached to eliminate a warning in lisp/treesit.el.
--
Peter Oliver
[0001-Eliminate-obsolete-alias-warning.patch (text/plain, attachment)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Fri, 03 Jan 2025 12:03:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> Date: Fri, 3 Jan 2025 11:41:46 +0000 (GMT)
> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
>
> A patch is attached to eliminate a warning in lisp/treesit.el.
>
> From 2a57f0e8b84ea8c99627b2e576cf71386f7c8aa6 Mon Sep 17 00:00:00 2001
> From: Peter Oliver <git <at> mavit.org.uk>
> Date: Fri, 3 Jan 2025 11:36:16 +0000
> Subject: [PATCH] Eliminate obsolete alias warning
>
> * lisp/treesit.el (treesit-transpose-sexps): Replace obsolete alias loop
> with cl-loop
I don't get any warning, and this 'loop' is not an obsolete alias:
(and (treesit-available-p)
(named-let loop ((res nil) <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
(buffers (buffer-list)))
(if (null buffers)
(mapc (lambda (b)
(with-current-buffer b
(setq-local treesit-font-lock-level val)
(treesit-font-lock-recompute-features)
(treesit-font-lock-fontify-region (point-min)
(point-max))))
res)
(let ((buffer (car buffers)))
(with-current-buffer buffer
(if treesit-font-lock-settings
(loop (append res (list buffer)) (cdr buffers))
(loop res (cdr buffers)))))))))
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Fri, 03 Jan 2025 14:12:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 75310 <at> debbugs.gnu.org (full text, mbox):
On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>> Date: Fri, 3 Jan 2025 11:41:46 +0000 (GMT)
>> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
>>
>> A patch is attached to eliminate a warning in lisp/treesit.el.
>>
>> From 2a57f0e8b84ea8c99627b2e576cf71386f7c8aa6 Mon Sep 17 00:00:00 2001
>> From: Peter Oliver <git <at> mavit.org.uk>
>> Date: Fri, 3 Jan 2025 11:36:16 +0000
>> Subject: [PATCH] Eliminate obsolete alias warning
>>
>> * lisp/treesit.el (treesit-transpose-sexps): Replace obsolete alias loop
>> with cl-loop
>
> I don't get any warning, and this 'loop' is not an obsolete alias:
I see the warning with emacs -Q if I (require 'cl).
Apologies for the bad fix.
--
Peter Oliver
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Fri, 03 Jan 2025 14:19:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> Date: Fri, 3 Jan 2025 14:11:00 +0000 (GMT)
> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
> cc: 75310 <at> debbugs.gnu.org
>
> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>
> >> Date: Fri, 3 Jan 2025 11:41:46 +0000 (GMT)
> >> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
> >>
> >> A patch is attached to eliminate a warning in lisp/treesit.el.
> >>
> >> From 2a57f0e8b84ea8c99627b2e576cf71386f7c8aa6 Mon Sep 17 00:00:00 2001
> >> From: Peter Oliver <git <at> mavit.org.uk>
> >> Date: Fri, 3 Jan 2025 11:36:16 +0000
> >> Subject: [PATCH] Eliminate obsolete alias warning
> >>
> >> * lisp/treesit.el (treesit-transpose-sexps): Replace obsolete alias loop
> >> with cl-loop
> >
> > I don't get any warning, and this 'loop' is not an obsolete alias:
>
> I see the warning with emacs -Q if I (require 'cl).
You get the warning when you load cl, or when you load treesit after
cl? Or something else?
IOW, can you show a minimal recipe for reproducing the problem,
starting from "emacs -Q"?
Thanks.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Fri, 03 Jan 2025 14:48:01 GMT)
Full text and
rfc822 format available.
Message #17 received at 75310 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Fri, 3 Jan 2025, Eli Zaretskii wrote:
> IOW, can you show a minimal recipe for reproducing the problem,
> starting from "emacs -Q"?
$ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
31.0.50
Package cl is deprecated
lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
--
Peter Oliver
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Fri, 03 Jan 2025 15:28:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
> cc: 75310 <at> debbugs.gnu.org
>
> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>
> > IOW, can you show a minimal recipe for reproducing the problem,
> > starting from "emacs -Q"?
>
> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
> 31.0.50
> Package cl is deprecated
> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
Thanks.
Yuan, I think it would be good to rename 'loop' there to some other
name, do you agree?
Severity set to 'wishlist' from 'normal'
Request was from
Stefan Kangas <stefankangas <at> gmail.com>
to
control <at> debbugs.gnu.org
.
(Fri, 03 Jan 2025 18:53:01 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Sat, 04 Jan 2025 07:34:02 GMT)
Full text and
rfc822 format available.
Message #25 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> On Jan 3, 2025, at 7:27 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>
>> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
>> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
>> cc: 75310 <at> debbugs.gnu.org
>>
>> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>>
>>> IOW, can you show a minimal recipe for reproducing the problem,
>>> starting from "emacs -Q"?
>>
>> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
>> 31.0.50
>> Package cl is deprecated
>> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
>
> Thanks.
>
> Yuan, I think it would be good to rename 'loop' there to some other
> name, do you agree?
I would definitely agree. I’ve always used cl-loop (and now I try to not use it for new code). The only instance of “loop” I can find in treesit.el is in a named-let in treesit-transpose-sexps wriiten by Theo, and it’s not the CL loop but a local function defined by named-let. I wanted to rewrite it so it doesn’t use named-let because it’s not very readable, but tbh I haven’t find the time to understand that function well enough to rewrite it (because it’s not very readable :-)
It could be that only I can’t understand it, but code should be simple enough that even I can understand ;-)
Once I rewrite it, there shouldn't be any occurrence of loop in treesit.el.
treesit-transpose-sexps looks like this:
(defun treesit-transpose-sexps (&optional arg)
"Tree-sitter `transpose-sexps' function.
ARG is the same as in `transpose-sexps'.
Locate the node closest to POINT, and transpose that node with
its sibling node ARG nodes away.
Return a pair of positions as described by
`transpose-sexps-function' for use in `transpose-subr' and
friends."
;; First arrive at the right level at where the node at point is
;; considered a sexp. If sexp isn't defined, or we can't find any
;; node that's a sexp, use the node at point.
(let* ((node (or (treesit-thing-at-point 'sexp 'nested)
(treesit-node-at (point))))
(parent (treesit-node-parent node))
(child (treesit-node-child parent 0 t)))
(named-let loop ((prev child)
(next (treesit-node-next-sibling child t)))
(when (and prev next)
(if (< (point) (treesit-node-end next))
(if (= arg -1)
(cons (treesit-node-start prev)
(treesit-node-end prev))
(when-let* ((n (treesit-node-child
parent (+ arg (treesit-node-index prev t)) t)))
(cons (treesit-node-end n)
(treesit-node-start n))))
(loop (treesit-node-next-sibling prev t)
(treesit-node-next-sibling next t)))))))
Yuan
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Sat, 04 Jan 2025 08:30:02 GMT)
Full text and
rfc822 format available.
Message #28 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> From: Yuan Fu <casouri <at> gmail.com>
> Date: Fri, 3 Jan 2025 23:33:25 -0800
> Cc: Peter Oliver <p.d.oliver <at> mavit.org.uk>,
> 75310 <at> debbugs.gnu.org
>
> > On Jan 3, 2025, at 7:27 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
> >
> >> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
> >> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
> >> cc: 75310 <at> debbugs.gnu.org
> >>
> >> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
> >>
> >>> IOW, can you show a minimal recipe for reproducing the problem,
> >>> starting from "emacs -Q"?
> >>
> >> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
> >> 31.0.50
> >> Package cl is deprecated
> >> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
> >
> > Thanks.
> >
> > Yuan, I think it would be good to rename 'loop' there to some other
> > name, do you agree?
>
> I would definitely agree. I’ve always used cl-loop (and now I try to not use it for new code). The only instance of “loop” I can find in treesit.el is in a named-let in treesit-transpose-sexps wriiten by Theo, and it’s not the CL loop but a local function defined by named-let. I wanted to rewrite it so it doesn’t use named-let because it’s not very readable, but tbh I haven’t find the time to understand that function well enough to rewrite it (because it’s not very readable :-)
>
> It could be that only I can’t understand it, but code should be simple enough that even I can understand ;-)
Renaming the symbol is easy, and doesn't require you to understand the
code completely. We don't have to use cl-loop.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Sat, 04 Jan 2025 19:27:01 GMT)
Full text and
rfc822 format available.
Message #31 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> On Jan 4, 2025, at 12:29 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>
>> From: Yuan Fu <casouri <at> gmail.com>
>> Date: Fri, 3 Jan 2025 23:33:25 -0800
>> Cc: Peter Oliver <p.d.oliver <at> mavit.org.uk>,
>> 75310 <at> debbugs.gnu.org
>>
>>> On Jan 3, 2025, at 7:27 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>>>
>>>> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
>>>> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
>>>> cc: 75310 <at> debbugs.gnu.org
>>>>
>>>> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>>>>
>>>>> IOW, can you show a minimal recipe for reproducing the problem,
>>>>> starting from "emacs -Q"?
>>>>
>>>> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
>>>> 31.0.50
>>>> Package cl is deprecated
>>>> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
>>>
>>> Thanks.
>>>
>>> Yuan, I think it would be good to rename 'loop' there to some other
>>> name, do you agree?
>>
>> I would definitely agree. I’ve always used cl-loop (and now I try to not use it for new code). The only instance of “loop” I can find in treesit.el is in a named-let in treesit-transpose-sexps wriiten by Theo, and it’s not the CL loop but a local function defined by named-let. I wanted to rewrite it so it doesn’t use named-let because it’s not very readable, but tbh I haven’t find the time to understand that function well enough to rewrite it (because it’s not very readable :-)
>>
>> It could be that only I can’t understand it, but code should be simple enough that even I can understand ;-)
>
> Renaming the symbol is easy, and doesn't require you to understand the
> code completely. We don't have to use cl-loop.
Ah right, duh :-) Though I renamed the symbol and still gets the deprecation message. There’s no other “loop” in treesit.el, only cl-loop. Could you maybe take a look?
Yuan
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Sat, 04 Jan 2025 19:28:02 GMT)
Full text and
rfc822 format available.
Message #34 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> On Jan 4, 2025, at 11:26 AM, Yuan Fu <casouri <at> gmail.com> wrote:
>
>
>
>> On Jan 4, 2025, at 12:29 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>>
>>> From: Yuan Fu <casouri <at> gmail.com>
>>> Date: Fri, 3 Jan 2025 23:33:25 -0800
>>> Cc: Peter Oliver <p.d.oliver <at> mavit.org.uk>,
>>> 75310 <at> debbugs.gnu.org
>>>
>>>> On Jan 3, 2025, at 7:27 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>>>>
>>>>> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
>>>>> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
>>>>> cc: 75310 <at> debbugs.gnu.org
>>>>>
>>>>> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>>>>>
>>>>>> IOW, can you show a minimal recipe for reproducing the problem,
>>>>>> starting from "emacs -Q"?
>>>>>
>>>>> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
>>>>> 31.0.50
>>>>> Package cl is deprecated
>>>>> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
>>>>
>>>> Thanks.
>>>>
>>>> Yuan, I think it would be good to rename 'loop' there to some other
>>>> name, do you agree?
>>>
>>> I would definitely agree. I’ve always used cl-loop (and now I try to not use it for new code). The only instance of “loop” I can find in treesit.el is in a named-let in treesit-transpose-sexps wriiten by Theo, and it’s not the CL loop but a local function defined by named-let. I wanted to rewrite it so it doesn’t use named-let because it’s not very readable, but tbh I haven’t find the time to understand that function well enough to rewrite it (because it’s not very readable :-)
>>>
>>> It could be that only I can’t understand it, but code should be simple enough that even I can understand ;-)
>>
>> Renaming the symbol is easy, and doesn't require you to understand the
>> code completely. We don't have to use cl-loop.
>
> Ah right, duh :-) Though I renamed the symbol and still gets the deprecation message. There’s no other “loop” in treesit.el, only cl-loop. Could you maybe take a look?
Never mind, the deprecation message is from requiring cl. The obsolete alias error is fixed by renaming the symbol.
Yuan
Reply sent
to
Yuan Fu <casouri <at> gmail.com>
:
You have taken responsibility.
(Sat, 04 Jan 2025 19:33:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Peter Oliver <p.d.oliver <at> mavit.org.uk>
:
bug acknowledged by developer.
(Sat, 04 Jan 2025 19:33:02 GMT)
Full text and
rfc822 format available.
Message #39 received at 75310-done <at> debbugs.gnu.org (full text, mbox):
> On Jan 4, 2025, at 11:27 AM, Yuan Fu <casouri <at> gmail.com> wrote:
>
>
>
>> On Jan 4, 2025, at 11:26 AM, Yuan Fu <casouri <at> gmail.com> wrote:
>>
>>
>>
>>> On Jan 4, 2025, at 12:29 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>>>
>>>> From: Yuan Fu <casouri <at> gmail.com>
>>>> Date: Fri, 3 Jan 2025 23:33:25 -0800
>>>> Cc: Peter Oliver <p.d.oliver <at> mavit.org.uk>,
>>>> 75310 <at> debbugs.gnu.org
>>>>
>>>>> On Jan 3, 2025, at 7:27 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
>>>>>
>>>>>> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
>>>>>> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
>>>>>> cc: 75310 <at> debbugs.gnu.org
>>>>>>
>>>>>> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
>>>>>>
>>>>>>> IOW, can you show a minimal recipe for reproducing the problem,
>>>>>>> starting from "emacs -Q"?
>>>>>>
>>>>>> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
>>>>>> 31.0.50
>>>>>> Package cl is deprecated
>>>>>> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
>>>>>
>>>>> Thanks.
>>>>>
>>>>> Yuan, I think it would be good to rename 'loop' there to some other
>>>>> name, do you agree?
>>>>
>>>> I would definitely agree. I’ve always used cl-loop (and now I try to not use it for new code). The only instance of “loop” I can find in treesit.el is in a named-let in treesit-transpose-sexps wriiten by Theo, and it’s not the CL loop but a local function defined by named-let. I wanted to rewrite it so it doesn’t use named-let because it’s not very readable, but tbh I haven’t find the time to understand that function well enough to rewrite it (because it’s not very readable :-)
>>>>
>>>> It could be that only I can’t understand it, but code should be simple enough that even I can understand ;-)
>>>
>>> Renaming the symbol is easy, and doesn't require you to understand the
>>> code completely. We don't have to use cl-loop.
>>
>> Ah right, duh :-) Though I renamed the symbol and still gets the deprecation message. There’s no other “loop” in treesit.el, only cl-loop. Could you maybe take a look?
>
> Never mind, the deprecation message is from requiring cl. The obsolete alias error is fixed by renaming the symbol.
>
> Yuan
Never mind × 2 :-) Juri just modified treesit-transpose-sexp so it doesn’t contain “loop” anymore.
Yuan
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#75310
; Package
emacs
.
(Sat, 04 Jan 2025 20:05:01 GMT)
Full text and
rfc822 format available.
Message #42 received at 75310 <at> debbugs.gnu.org (full text, mbox):
> From: Yuan Fu <casouri <at> gmail.com>
> Date: Sat, 4 Jan 2025 11:26:38 -0800
> Cc: Peter Oliver <p.d.oliver <at> mavit.org.uk>,
> 75310 <at> debbugs.gnu.org
>
>
>
> > On Jan 4, 2025, at 12:29 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
> >
> >> From: Yuan Fu <casouri <at> gmail.com>
> >> Date: Fri, 3 Jan 2025 23:33:25 -0800
> >> Cc: Peter Oliver <p.d.oliver <at> mavit.org.uk>,
> >> 75310 <at> debbugs.gnu.org
> >>
> >>> On Jan 3, 2025, at 7:27 AM, Eli Zaretskii <eliz <at> gnu.org> wrote:
> >>>
> >>>> Date: Fri, 3 Jan 2025 14:47:53 +0000 (GMT)
> >>>> From: Peter Oliver <p.d.oliver <at> mavit.org.uk>
> >>>> cc: 75310 <at> debbugs.gnu.org
> >>>>
> >>>> On Fri, 3 Jan 2025, Eli Zaretskii wrote:
> >>>>
> >>>>> IOW, can you show a minimal recipe for reproducing the problem,
> >>>>> starting from "emacs -Q"?
> >>>>
> >>>> $ src/emacs -Q --batch --eval "(progn (message emacs-version) (require 'cl) (require 'treesit))"
> >>>> 31.0.50
> >>>> Package cl is deprecated
> >>>> lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
> >>>
> >>> Thanks.
> >>>
> >>> Yuan, I think it would be good to rename 'loop' there to some other
> >>> name, do you agree?
> >>
> >> I would definitely agree. I’ve always used cl-loop (and now I try to not use it for new code). The only instance of “loop” I can find in treesit.el is in a named-let in treesit-transpose-sexps wriiten by Theo, and it’s not the CL loop but a local function defined by named-let. I wanted to rewrite it so it doesn’t use named-let because it’s not very readable, but tbh I haven’t find the time to understand that function well enough to rewrite it (because it’s not very readable :-)
> >>
> >> It could be that only I can’t understand it, but code should be simple enough that even I can understand ;-)
> >
> > Renaming the symbol is easy, and doesn't require you to understand the
> > code completely. We don't have to use cl-loop.
>
> Ah right, duh :-) Though I renamed the symbol and still gets the deprecation message. There’s no other “loop” in treesit.el, only cl-loop. Could you maybe take a look?
You get deprecation message in what scenario? If you see
Package cl is deprecated
when you load cl, that's expected, and cannot be shut up. The message
we want to avoid is this:
lisp/treesit.el: Warning: ‘loop’ is an obsolete alias (as of 27.1); use ‘cl-loop’ instead.
Are you still seeing it after the change?
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 02 Feb 2025 12:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 138 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.