emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27315: closed (Regression: `abbreviate-file-name'


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27315: closed (Regression: `abbreviate-file-name' and `tramp-file-name-handler')
Date: Fri, 16 Jun 2017 08:40:02 +0000

Your message dated Fri, 16 Jun 2017 10:39:21 +0200
with message-id <address@hidden>
and subject line Re: bug#27315: Regression: `abbreviate-file-name' and 
`tramp-file-name-handler'
has caused the debbugs.gnu.org bug report #27315,
regarding Regression: `abbreviate-file-name' and `tramp-file-name-handler'
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27315: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27315
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Regression: `abbreviate-file-name' and `tramp-file-name-handler' Date: Sat, 10 Jun 2017 21:00:22 +0200
Hello,

In Emacs 26 series, I notice regression that has to do with `abbreviate-file-name' and `tramp-file-name-handler'. Here is how to reproduce it:

$ emacs -Q

Paste the following to the "*scratch*" buffer:

(setq-default
  frame-title-format
  '((:eval (list (user-login-name)
                 "@"
                 (system-name)
                 ":"
                 (abbreviate-file-name (or (buffer-file-name)
                                           (file-name-as-directory
                                            default-directory)))))))

M-x eval-buffer
M-x find-file /sudo:address@hidden:~/hang

will result in hanging with the "Sending password" message in minibuffer. I did not debug this, but I know for sure how to workaround this and, therefore, can provide a clue how to fix it. That is

$ emacs -Q

Paste the following to the "*scratch*" buffer:

(setq-default
  frame-title-format
  '((:eval (list (user-login-name)
                 "@"
                 (system-name)
                 ":"
                 (let (file-name-handler-alist)
                   (abbreviate-file-name (or (buffer-file-name)
                                             (file-name-as-directory
                                              default-directory))))))))

M-x eval-buffer
M-x find-file /sudo:address@hidden:~/yuppie

opens the file just fine. It means that somehow since Emacs 26 `abbreviate-file-name' either triggers `tramp-file-name-handler' or it did so before but this time (I heard that the TRAMP syntax has changed) it might be bugged.

Michael, could you have a look at this?  Thanks!

Kind regards,
Alexander



--- End Message ---
--- Begin Message --- Subject: Re: bug#27315: Regression: `abbreviate-file-name' and `tramp-file-name-handler' Date: Fri, 16 Jun 2017 10:39:21 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)
Alexander Shukaev <address@hidden> writes:

> Hi Michael,

Hi Alexander,

> Confirmed, works very well.

Thanks for confirmation, I'm closing the bug.

> Kind regards,
> Alexander

Best regards, Michael.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]