GNU bug report logs - #28439
suggestion: support case-independent xref-find-definitions prompt TAB

Previous Next

Package: emacs;

Reported by: Winston <wbe <at> psr.com>

Date: Tue, 12 Sep 2017 22:38:01 UTC

Severity: wishlist

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

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 28439 in the body.
You can then email your comments to 28439 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#28439; Package emacs. (Tue, 12 Sep 2017 22:38:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Winston <wbe <at> psr.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Tue, 12 Sep 2017 22:38:02 GMT) Full text and rfc822 format available.

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

From: Winston <wbe <at> psr.com>
To: bug-gnu-emacs <at> gnu.org
Cc: Eli Zaretskii <eliz <at> gnu.org>, Dmitry Gutov <dgutov <at> yandex.ru>
Subject: suggestion: support case-independent xref-find-definitions prompt TAB
Date: Tue, 12 Sep 2017 18:37 EDT
xref-find-definitions UI suggestion:

   Since xref-find-definitions is willing to match names typed in all
   lower case to mixed case names, TAB (show alternatives) should, too.
   If there's not already a way to make TAB do so, then a way should be
   added.

Discussion:

   Suppose I have Foo1() and Foo2().  Entering "foo1" or "foo2" at the
   prompt works if the name is complete and unique, even though I used
   all lower case.  TAB, however will only show alternatives if I've
   typed "Foo" TAB, while "foo" TAB will say "No matches".

   While it's obvious why the code works that way, I claim users are
   going to expect TAB to offer completions for any string with which
   xref-find-definitions would succeed, and thus that TAB should be
   capable of presenting a less case-dependent alternatives list.

   I was surprised when it didn't.  I had typed in enough of a tag name
(in all lower case) to match uniquely, and then typed TAB expecting the
single completion (perhaps in the prompt line itself rather than a
separate window, possibly with the string I had entered being converted
to its correct mixed case), and was surprised when it said No match.

   This is also another difference compared to find-tag, where one only
needs to uniquely partial match a name to get to it.  With
xref-find-definitions, I can't go to the partial name and TAB doesn't
complete the name even when there's only one match (because the typed
string had the wrong case), so it takes more typing (or correct use of
the shift key) than find-tag did.
 -WBE




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Tue, 12 Sep 2017 23:25:01 GMT) Full text and rfc822 format available.

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

From: Stephen Berman <stephen.berman <at> gmx.net>
To: Winston <wbe <at> psr.com>
Cc: 28439 <at> debbugs.gnu.org, Dmitry Gutov <dgutov <at> yandex.ru>
Subject: Re: bug#28439: suggestion: support case-independent
 xref-find-definitions prompt TAB
Date: Wed, 13 Sep 2017 01:24:02 +0200
On Tue, 12 Sep 2017 18:37 EDT Winston <wbe <at> psr.com> wrote:

> xref-find-definitions UI suggestion:
>
>    Since xref-find-definitions is willing to match names typed in all
>    lower case to mixed case names, TAB (show alternatives) should, too.
>    If there's not already a way to make TAB do so, then a way should be
>    added.

There is: (setq completion-ignore-case t)

Steve Berman




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Tue, 12 Sep 2017 23:32:02 GMT) Full text and rfc822 format available.

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

From: Winston <wbe <at> psr.com>
To: Stephen Berman <stephen.berman <at> gmx.net>
Cc: 28439 <at> debbugs.gnu.org, Dmitry Gutov <dgutov <at> yandex.ru>
Subject: Re: bug#28439: suggestion: support case-independent
 xref-find-definitions
Date: Tue, 12 Sep 2017 19:31 EDT
Steve Berman kindly replied:
> There is: (setq completion-ignore-case t)

Wow, that was easy, and it does just what I described.

Thanks!
 -WBE

[You're welcome to close this suggestion/bug report.]




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Wed, 13 Sep 2017 15:32:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Winston <wbe <at> psr.com>
Cc: bug-gnu-emacs <at> gnu.org, dgutov <at> yandex.ru
Subject: Re: suggestion: support case-independent xref-find-definitions prompt
 TAB
Date: Wed, 13 Sep 2017 18:30:44 +0300
> Date: Tue, 12 Sep 2017 18:37 EDT
> From: Winston <wbe <at> psr.com>
> Cc: Eli Zaretskii <eliz <at> gnu.org>, Dmitry Gutov <dgutov <at> yandex.ru>
> 
> xref-find-definitions UI suggestion:
> 
>    Since xref-find-definitions is willing to match names typed in all
>    lower case to mixed case names, TAB (show alternatives) should, too.
>    If there's not already a way to make TAB do so, then a way should be
>    added.

Dmitry, how about the patch below?

--- lisp/progmodes/xref.el~0	2017-06-01 07:00:20.000000000 +0300
+++ lisp/progmodes/xref.el	2017-09-13 07:30:19.779611200 +0300
@@ -762,22 +762,25 @@
           (not (memq command (cdr xref-prompt-for-identifier)))
         (memq command xref-prompt-for-identifier))))
 
-(defun xref--read-identifier (prompt)
-  "Return the identifier at point or read it from the minibuffer."
+(defun xref--read-identifier (prompt &optional caseless)
+  "Return the identifier at point or read it from the minibuffer.
+Optional argument CASELESS means ignore letter-case when completing
+on user input."
   (let* ((backend (xref-find-backend))
          (id (xref-backend-identifier-at-point backend)))
     (cond ((or current-prefix-arg
                (not id)
                (xref--prompt-p this-command))
-           (completing-read (if id
-                                (format "%s (default %s): "
-                                        (substring prompt 0 (string-match
-                                                             "[ :]+\\'" prompt))
-                                        id)
-                              prompt)
-                            (xref-backend-identifier-completion-table backend)
-                            nil nil nil
-                            'xref--read-identifier-history id))
+           (let ((completion-ignore-case caseless))
+             (completing-read (if id
+                                  (format "%s (default %s): "
+                                          (substring prompt 0 (string-match
+                                                               "[ :]+\\'" prompt))
+                                          id)
+                                prompt)
+                              (xref-backend-identifier-completion-table backend)
+                              nil nil nil
+                              'xref--read-identifier-history id)))
           (t id))))
 
 
@@ -804,19 +807,19 @@
 definition for IDENTIFIER, display it in the selected window.
 Otherwise, display the list of the possible definitions in a
 buffer where the user can select from the list."
-  (interactive (list (xref--read-identifier "Find definitions of: ")))
+  (interactive (list (xref--read-identifier "Find definitions of: " t)))
   (xref--find-definitions identifier nil))
 
 ;;;###autoload
 (defun xref-find-definitions-other-window (identifier)
   "Like `xref-find-definitions' but switch to the other window."
-  (interactive (list (xref--read-identifier "Find definitions of: ")))
+  (interactive (list (xref--read-identifier "Find definitions of: " t)))
   (xref--find-definitions identifier 'window))
 
 ;;;###autoload
 (defun xref-find-definitions-other-frame (identifier)
   "Like `xref-find-definitions' but switch to the other frame."
-  (interactive (list (xref--read-identifier "Find definitions of: ")))
+  (interactive (list (xref--read-identifier "Find definitions of: " t)))
   (xref--find-definitions identifier 'frame))
 
 ;;;###autoload




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Wed, 13 Sep 2017 23:05:02 GMT) Full text and rfc822 format available.

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

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Eli Zaretskii <eliz <at> gnu.org>, Winston <wbe <at> psr.com>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: suggestion: support case-independent xref-find-definitions prompt
 TAB
Date: Thu, 14 Sep 2017 02:04:10 +0300
Hi Eli,

On 9/13/17 6:30 PM, Eli Zaretskii wrote:

>> xref-find-definitions UI suggestion:
>>
>>     Since xref-find-definitions is willing to match names typed in all
>>     lower case to mixed case names, TAB (show alternatives) should, too.
>>     If there's not already a way to make TAB do so, then a way should be
>>     added.
> 
> Dmitry, how about the patch below?

Sorry, what don't we want to follow the value of completion-ignore-case?

The fact that we have the option tags-case-fold-search (used in 
find-tag-tag, among other places) probably means that some users prefer 
not to ignore case.

Maybe we could add a similar xref-specific option on top, but I'm not 
sure why completion-ignore-case is not good enough.

We could change its default to t, though.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Thu, 14 Sep 2017 17:02:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Dmitry Gutov <dgutov <at> yandex.ru>
Cc: wbe <at> psr.com, bug-gnu-emacs <at> gnu.org
Subject: Re: suggestion: support case-independent xref-find-definitions prompt
 TAB
Date: Thu, 14 Sep 2017 20:01:36 +0300
> Cc: bug-gnu-emacs <at> gnu.org
> From: Dmitry Gutov <dgutov <at> yandex.ru>
> Date: Thu, 14 Sep 2017 02:04:10 +0300
> 
> >>     Since xref-find-definitions is willing to match names typed in all
> >>     lower case to mixed case names, TAB (show alternatives) should, too.
> >>     If there's not already a way to make TAB do so, then a way should be
> >>     added.
> > 
> > Dmitry, how about the patch below?
> 
> Sorry, what don't we want to follow the value of completion-ignore-case?

Because it has a much broader effect.  And because the issue here is
inconsistency between completion and actual matching in
xref-find-definitions.  They should be consistent, IMO.

> The fact that we have the option tags-case-fold-search (used in 
> find-tag-tag, among other places) probably means that some users prefer 
> not to ignore case.

Then maybe an alternative is to make tags-case-fold-search nil by
default?  Or make xref--read-identifier be case-insensitive if
case-fold-search is non-nil?

> Maybe we could add a similar xref-specific option on top, but I'm not 
> sure why completion-ignore-case is not good enough.
> 
> We could change its default to t, though.

Emacs-wide?  Or just when completing on identifiers?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Thu, 14 Sep 2017 18:22:02 GMT) Full text and rfc822 format available.

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

From: Winston <wbe <at> psr.com>
To: Eli Zaretskii <eliz <at> gnu.org>, Dmitry Gutov <dgutov <at> yandex.ru>
Cc: 28439 <at> debbugs.gnu.org
Subject: Re: bug#28439: suggestion: support case-independent
 xref-find-definitions prompt
Date: Thu, 14 Sep 2017 14:21 EDT
[I've corrected the Subject and Cc lists above to refer to bug#28439
 instead of sending to bug-gnu-emacs <at> gnu.org.]

>> Sorry, what don't we want to follow the value of completion-ignore-case?

> Because it has a much broader effect.  And because the issue here is
> inconsistency between completion and actual matching in
> xref-find-definitions.  They should be consistent, IMO.

   Thank you, Eli.  IMHO, too.

   For now, I'm using completion-ignore-case because it solves the
immediate issue, but I was concerned that it could have side-effects
elsewhere that I won't discover until they happen.

   Sure, since I like it here, I might like it elsewhere, but I won't
know until those situations come up, and if I don't like it elsewhere,
then I'd be stuck.

   I liked your patch when I saw it, because it directly addressed the
issue.  Other options obviously include:
* xref-completion-ignore-case, default t;
* creating something that applies to both completions and find-definition
  (I didn't save the patch, but my vague recollection is that it just
  defaulted to using t for completions).

JMO, FWIW.
 -WBE




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Thu, 14 Sep 2017 22:06:01 GMT) Full text and rfc822 format available.

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

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Winston <wbe <at> psr.com>, Eli Zaretskii <eliz <at> gnu.org>
Cc: 28439 <at> debbugs.gnu.org
Subject: Re: bug#28439: suggestion: support case-independent
 xref-find-definitions prompt
Date: Fri, 15 Sep 2017 01:05:23 +0300
On 9/14/17 9:20 PM, Winston wrote:

>     Sure, since I like it here, I might like it elsewhere, but I won't
> know until those situations come up, and if I don't like it elsewhere,
> then I'd be stuck.

I'd like to know of one such example, if it happens.

>     I liked your patch when I saw it, because it directly addressed the
> issue.  Other options obviously include:
> * xref-completion-ignore-case, default t;

Yes, that's my alternative suggestion.

> * creating something that applies to both completions and find-definition
>    (I didn't save the patch, but my vague recollection is that it just
>    defaulted to using t for completions).

Not sure what this means, need details.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Thu, 14 Sep 2017 22:34:02 GMT) Full text and rfc822 format available.

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

From: Winston <wbe <at> psr.com>
To: Dmitry Gutov <dgutov <at> yandex.ru>, Eli Zaretskii <eliz <at> gnu.org>
Cc: 28439 <at> debbugs.gnu.org
Subject: Re: bug#28439: suggestion: support case-independent
Date: Thu, 14 Sep 2017 18:33 EDT
>>     Sure, since I like it here, I might like it elsewhere, but I won't
>> know until those situations come up, and if I don't like it elsewhere,
>> then I'd be stuck.

> I'd like to know of one such example, if it happens.

OK, but if it's a couple years from now before it happens, I'm likely to
assume you're not still interested.  :)

>> * xref-completion-ignore-case, default t;

>> * creating something that applies to both completions and
>>    find-definition (I didn't save the patch, but my vague
>>    recollection is that it just defaulted to using t for
>>    completions).

> Not sure what this means, need details.

The first was a variable that only affects completions.

The second controls both completions and what xref-find-definitions
matches, so either both would allow case folding or both would not.
 -WBE




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Tue, 19 Sep 2017 00:42:02 GMT) Full text and rfc822 format available.

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

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Winston <wbe <at> psr.com>, Eli Zaretskii <eliz <at> gnu.org>
Cc: 28439 <at> debbugs.gnu.org
Subject: Re: bug#28439: suggestion: support case-independent
Date: Tue, 19 Sep 2017 03:41:37 +0300
On 9/15/17 1:32 AM, Winston wrote:

> OK, but if it's a couple years from now before it happens, I'm likely to
> assume you're not still interested.  :)

I probably would. :)

>>> * xref-completion-ignore-case, default t;
> 
>>> * creating something that applies to both completions and
>>>     find-definition (I didn't save the patch, but my vague
>>>     recollection is that it just defaulted to using t for
>>>     completions).
> 
>> Not sure what this means, need details.
> 
> The first was a variable that only affects completions.
> 
> The second controls both completions and what xref-find-definitions
> matches, so either both would allow case folding or both would not.

The second option is something to consider indeed. Since we don't 
require a match during completion, the user can enter a string that 
would have completions, but gets no case-sensitive matches.

We can do that without an extra variable, though, by making definitions 
search be controlled by completion-ignore-case.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Tue, 19 Sep 2017 00:56:02 GMT) Full text and rfc822 format available.

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

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: wbe <at> psr.com, bug-gnu-emacs <at> gnu.org
Subject: Re: suggestion: support case-independent xref-find-definitions prompt
 TAB
Date: Tue, 19 Sep 2017 03:55:34 +0300
On 9/14/17 8:01 PM, Eli Zaretskii wrote:

>> Sorry, what don't we want to follow the value of completion-ignore-case?
> 
> Because it has a much broader effect. 

I guessed so. But do you have a particular problem in mind?

> And because the issue here is
> inconsistency between completion and actual matching in
> xref-find-definitions.  They should be consistent, IMO.

I think I agree, because xref--read-identifier calls completing-read 
with nil require-match argument (so we can't rely on the completion 
table to correct the input), but your patch doesn't fix the 
inconsistency. It only moves the identifier read toward the 
case-fold-search default.

>> The fact that we have the option tags-case-fold-search (used in
>> find-tag-tag, among other places) probably means that some users prefer
>> not to ignore case.
> 
> Then maybe an alternative is to make tags-case-fold-search nil by
> default? Or make xref--read-identifier be case-insensitive if
> case-fold-search is non-nil?

The other way around: etags--xref-find-definitions can bind 
tags-case-fold-search to the value of completion-ignore-case. Or 
whichever xref-specific variable we add.

We'd also need to add case-insensitive search support to 
elisp--xref-find-definitions, I suppose. So far, 
find-function-search-for-symbol always performs case-sensitive search. 
It's rarely a problem, though, because Elisp uses capital letters very 
infrequently.

>> Maybe we could add a similar xref-specific option on top, but I'm not
>> sure why completion-ignore-case is not good enough.
>>
>> We could change its default to t, though.
> 
> Emacs-wide?  Or just when completing on identifiers?

Either is fine, as far as I'm concerned.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Tue, 19 Sep 2017 04:02:02 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Dmitry Gutov <dgutov <at> yandex.ru>
Cc: wbe <at> psr.com, bug-gnu-emacs <at> gnu.org
Subject: Re: suggestion: support case-independent xref-find-definitions prompt
 TAB
Date: Tue, 19 Sep 2017 07:01:21 +0300
> Cc: wbe <at> psr.com, bug-gnu-emacs <at> gnu.org
> From: Dmitry Gutov <dgutov <at> yandex.ru>
> Date: Tue, 19 Sep 2017 03:55:34 +0300
> 
> On 9/14/17 8:01 PM, Eli Zaretskii wrote:
> 
> >> Sorry, what don't we want to follow the value of completion-ignore-case?
> > 
> > Because it has a much broader effect. 
> 
> I guessed so. But do you have a particular problem in mind?

No, just a general concern.

> > Then maybe an alternative is to make tags-case-fold-search nil by
> > default? Or make xref--read-identifier be case-insensitive if
> > case-fold-search is non-nil?
> 
> The other way around: etags--xref-find-definitions can bind 
> tags-case-fold-search to the value of completion-ignore-case. Or 
> whichever xref-specific variable we add.

Fine with me.

> We'd also need to add case-insensitive search support to 
> elisp--xref-find-definitions, I suppose. So far, 
> find-function-search-for-symbol always performs case-sensitive search. 
> It's rarely a problem, though, because Elisp uses capital letters very 
> infrequently.

Agreed, on both counts.

> >> Maybe we could add a similar xref-specific option on top, but I'm not
> >> sure why completion-ignore-case is not good enough.
> >>
> >> We could change its default to t, though.
> > 
> > Emacs-wide?  Or just when completing on identifiers?
> 
> Either is fine, as far as I'm concerned.

Emacs-wide is too radical, I think, and I don't think we have a good
case for justifying that.

Thanks.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Wed, 27 Sep 2017 23:08:02 GMT) Full text and rfc822 format available.

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

From: Winston <wbe <at> psr.com>
To: Eli Zaretskii <eliz <at> gnu.org>, Dmitry Gutov <dgutov <at> yandex.ru>
Cc: wbe <at> psr.com, 28439 <at> debbugs.gnu.org
Subject: Re: suggestion: support case-independent xref-find-definitions prompt
Date: Wed, 27 Sep 2017 19:07 EDT
Re: using completion-ignore-case to control both completions and
    xref-find-definitions 

Dmitry previously commented:
> We can do that without an extra variable, though, by making
> definitions search be controlled by completion-ignore-case.

   Unless you want to argue that xref-find-definitions is a
"completion", doing that would mean that completion-ignore-case has an
unexpected side-effect (namely, that it affects a function that is not a
"completion").  On programming aesthetic grounds, then, I'd argue that
xref-ignore-case (or whatever you want to call it) would be better.
 -WBE




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Fri, 29 Sep 2017 00:11:03 GMT) Full text and rfc822 format available.

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

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Winston <wbe <at> psr.com>, Eli Zaretskii <eliz <at> gnu.org>
Cc: 28439 <at> debbugs.gnu.org
Subject: Re: bug#28439: suggestion: support case-independent
 xref-find-definitions prompt
Date: Thu, 28 Sep 2017 23:47:34 +0300
On 9/28/17 2:06 AM, Winston wrote:

>     Unless you want to argue that xref-find-definitions is a
> "completion", doing that would mean that completion-ignore-case has an
> unexpected side-effect (namely, that it affects a function that is not a
> "completion").  On programming aesthetic grounds, then, I'd argue that
> xref-ignore-case (or whatever you want to call it) would be better.

This is just splitting hairs. xref-ignore-case will default to 
completion-ignore-case, and you'd be able to give the same complaint.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#28439; Package emacs. (Tue, 15 Sep 2020 15:22:02 GMT) Full text and rfc822 format available.

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

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Dmitry Gutov <dgutov <at> yandex.ru>
Cc: Winston <wbe <at> psr.com>, Eli Zaretskii <eliz <at> gnu.org>, 28439 <at> debbugs.gnu.org
Subject: Re: bug#28439: suggestion: support case-independent
 xref-find-definitions prompt
Date: Tue, 15 Sep 2020 17:20:55 +0200
Dmitry Gutov <dgutov <at> yandex.ru> writes:

> On 9/28/17 2:06 AM, Winston wrote:
>
>>     Unless you want to argue that xref-find-definitions is a
>> "completion", doing that would mean that completion-ignore-case has an
>> unexpected side-effect (namely, that it affects a function that is not a
>> "completion").  On programming aesthetic grounds, then, I'd argue that
>> xref-ignore-case (or whatever you want to call it) would be better.
>
> This is just splitting hairs. xref-ignore-case will default to
> completion-ignore-case, and you'd be able to give the same complaint.

Skimming this thread, it seems that there was concern that xref is
inconsistent here somehow, but no actual use case was shown where this
happens.  So I'm closing this bug report -- if this is a problem seen in
the wild, please respond to the debbugs address and we'll reopen.

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




bug closed, send any further explanations to 28439 <at> debbugs.gnu.org and Winston <wbe <at> psr.com> Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Tue, 15 Sep 2020 15:22:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 14 Oct 2020 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 195 days ago.

Previous Next


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