all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#68320: 30.0.50; filename completion with tramp fails on Windows
@ 2024-01-08 12:35 Kazuhiro Ito
  2024-01-08 15:16 ` Corwin Brust
  0 siblings, 1 reply; 11+ messages in thread
From: Kazuhiro Ito @ 2024-01-08 12:35 UTC (permalink / raw)
  To: 68320

1. Start Emacs that is placed in D: drive.
2. Evaluate (require 'tramp) to load tramp.el.
3. Type C-x C-f c : / TAB TAB

Completion for c:/ should be listed, but it seems that completions for
d:/ are showed.

-- 
Kazuhiro Ito





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-08 12:35 bug#68320: 30.0.50; filename completion with tramp fails on Windows Kazuhiro Ito
@ 2024-01-08 15:16 ` Corwin Brust
  2024-01-09 10:14   ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 11+ messages in thread
From: Corwin Brust @ 2024-01-08 15:16 UTC (permalink / raw)
  To: Kazuhiro Ito; +Cc: 68320

On Mon, Jan 8, 2024 at 6:35 AM Kazuhiro Ito <kzhr@d1.dion.ne.jp> wrote:
>
> 1. Start Emacs that is placed in D: drive.
> 2. Evaluate (require 'tramp) to load tramp.el.
> 3. Type C-x C-f c : / TAB TAB
>

I can reproduce this by starting Emacs placed in an H: drive and then
attempting to complete starting from C-x C-f c:/p <TAB> which should
offer me a folder called "projects" however the completion candidates
appear to be from my HOME directory (set by Environment Variable
before starting Emacs).





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-08 15:16 ` Corwin Brust
@ 2024-01-09 10:14   ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-01-10 15:16     ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 11+ messages in thread
From: Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-01-09 10:14 UTC (permalink / raw)
  To: Corwin Brust; +Cc: 68320, Kazuhiro Ito

Corwin Brust <corwin@bru.st> writes:

Hi,

>> 1. Start Emacs that is placed in D: drive.
>> 2. Evaluate (require 'tramp) to load tramp.el.
>> 3. Type C-x C-f c : / TAB TAB
>
> I can reproduce this by starting Emacs placed in an H: drive and then
> attempting to complete starting from C-x C-f c:/p <TAB> which should
> offer me a folder called "projects" however the completion candidates
> appear to be from my HOME directory (set by Environment Variable
> before starting Emacs).

FTR, I can also reproduce the problem. Will check next days whether I
could fix the problem. (Testing on MS Windows is always a burden to me.)

Best regards, Michael.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-09 10:14   ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-01-10 15:16     ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-01-10 15:26       ` Corwin Brust
  2024-01-10 15:26       ` Eli Zaretskii
  0 siblings, 2 replies; 11+ messages in thread
From: Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-01-10 15:16 UTC (permalink / raw)
  To: 68320

Michael Albinus <michael.albinus@gmx.de> writes:

Hi,

>>> 1. Start Emacs that is placed in D: drive.
>>> 2. Evaluate (require 'tramp) to load tramp.el.
>>> 3. Type C-x C-f c : / TAB TAB
>>
>> I can reproduce this by starting Emacs placed in an H: drive and then
>> attempting to complete starting from C-x C-f c:/p <TAB> which should
>> offer me a folder called "projects" however the completion candidates
>> appear to be from my HOME directory (set by Environment Variable
>> before starting Emacs).
>
> FTR, I can also reproduce the problem. Will check next days whether I
> could fix the problem. (Testing on MS Windows is always a burden to me.)

I've fixed this in the master branch. Could you, pls, give it some
testing. Since I don't use MS Windows regularly, I could try only some
few tests.

Best regards, Michael.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 15:16     ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-01-10 15:26       ` Corwin Brust
  2024-01-10 16:38         ` Corwin Brust
  2024-01-10 15:26       ` Eli Zaretskii
  1 sibling, 1 reply; 11+ messages in thread
From: Corwin Brust @ 2024-01-10 15:26 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 68320

On Wed, Jan 10, 2024 at 9:16 AM Michael Albinus via Bug reports for
GNU Emacs, the Swiss army knife of text editors
<bug-gnu-emacs@gnu.org> wrote:
>
> Michael Albinus <michael.albinus@gmx.de> writes:
> >>> 1. Start Emacs that is placed in D: drive.
> >>> 2. Evaluate (require 'tramp) to load tramp.el.
> >>> 3. Type C-x C-f c : / TAB TAB
> >>
> >> I can reproduce this by starting Emacs placed in an H: drive and then
> >> attempting to complete starting from C-x C-f c:/p <TAB> which should
> >> offer me a folder called "projects" however the completion candidates
> >> appear to be from my HOME directory (set by Environment Variable
> >> before starting Emacs).
> >
> I've fixed this in the master branch. Could you, pls, give it some
> testing.

I will kick-off a MSYS2/MINGW64 build from the development branch
shortly and report back; thanks for looking into this so quickly!





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 15:16     ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-01-10 15:26       ` Corwin Brust
@ 2024-01-10 15:26       ` Eli Zaretskii
  2024-01-10 16:59         ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 1 reply; 11+ messages in thread
From: Eli Zaretskii @ 2024-01-10 15:26 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 68320

> Date: Wed, 10 Jan 2024 16:16:24 +0100
> From:  Michael Albinus via "Bug reports for GNU Emacs,
>  the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
> 
> I've fixed this in the master branch. Could you, pls, give it some
> testing. Since I don't use MS Windows regularly, I could try only some
> few tests.

Seems to work here, thanks.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 15:26       ` Corwin Brust
@ 2024-01-10 16:38         ` Corwin Brust
  2024-01-10 16:55           ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 11+ messages in thread
From: Corwin Brust @ 2024-01-10 16:38 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 68320

> > Michael Albinus <michael.albinus@gmx.de> writes:
> > >>> 1. Start Emacs that is placed in D: drive.
> > >>> 2. Evaluate (require 'tramp) to load tramp.el.
> > >>> 3. Type C-x C-f c : / TAB TAB
> > >>
> > >
> > I've fixed this in the master branch. Could you, pls, give it some
> > testing.
>

I can no longer reproduce as of cd0eb055fd4ebc3f7f7f5f5617549f963fe8ecff

Here is a set of Windows x64 binaries created from that revision:

https://corwin.bru.st/emacs-30/emacs-30-cd0eb0/





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 16:38         ` Corwin Brust
@ 2024-01-10 16:55           ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-01-10 16:55 UTC (permalink / raw)
  To: 68320-done

Version: 30.1

Corwin Brust <corwin@bru.st> writes:

Hi Corwin,

>> > I've fixed this in the master branch. Could you, pls, give it some
>> > testing.
>
> I can no longer reproduce as of cd0eb055fd4ebc3f7f7f5f5617549f963fe8ecff

Thanks for the feedback. Taking also into account the feedback from Eli,
I assume the problem is fixed. Closing the bug.

Best regards, Michael.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 15:26       ` Eli Zaretskii
@ 2024-01-10 16:59         ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-01-10 20:00           ` Corwin Brust
  0 siblings, 1 reply; 11+ messages in thread
From: Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-01-10 16:59 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 68320

Eli Zaretskii <eliz@gnu.org> writes:

Hi Eli,

>> I've fixed this in the master branch. Could you, pls, give it some
>> testing. Since I don't use MS Windows regularly, I could try only some
>> few tests.
>
> Seems to work here, thanks.

Thanks for the feedback. My concern is rather that there could be a
regression in completion of remote file names on MS Windows. However, my
few test didn't show such bad.

Let's observe for the next couple of days whether people report problems.

Best regards, Michael.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 16:59         ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-01-10 20:00           ` Corwin Brust
  2024-01-11  7:51             ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 11+ messages in thread
From: Corwin Brust @ 2024-01-10 20:00 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 68320-done, Eli Zaretskii

On Wed, Jan 10, 2024 at 10:59 AM Michael Albinus via Bug reports for
GNU Emacs, the Swiss army knife of text editors
<bug-gnu-emacs@gnu.org> wrote:
>
>
> Let's observe for the next couple of days whether people report problems.
>

Completion of remote filenames works as normal for me from HEAD.  (It
worked as well before, so I think there is not a regression here
speaking from my own C-f C-x /pscp:...  based use-case.)





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#68320: 30.0.50; filename completion with tramp fails on Windows
  2024-01-10 20:00           ` Corwin Brust
@ 2024-01-11  7:51             ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-01-11  7:51 UTC (permalink / raw)
  To: Corwin Brust; +Cc: 68320, Eli Zaretskii

Corwin Brust <corwin@bru.st> writes:

Hi Corwin,

>> Let's observe for the next couple of days whether people report problems.
>
> Completion of remote filenames works as normal for me from HEAD.  (It
> worked as well before, so I think there is not a regression here
> speaking from my own C-f C-x /pscp:...  based use-case.)

Thanks for the feedback!

Best regards, Michael.





^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-01-11  7:51 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-08 12:35 bug#68320: 30.0.50; filename completion with tramp fails on Windows Kazuhiro Ito
2024-01-08 15:16 ` Corwin Brust
2024-01-09 10:14   ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-10 15:16     ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-10 15:26       ` Corwin Brust
2024-01-10 16:38         ` Corwin Brust
2024-01-10 16:55           ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-10 15:26       ` Eli Zaretskii
2024-01-10 16:59         ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-10 20:00           ` Corwin Brust
2024-01-11  7:51             ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.