* bug#26156: 26.0.50; expand-file-name fails to expand ~ if tramp is loaded and "/" is specified
@ 2017-03-18 1:49 mano155
2017-03-18 16:46 ` Michael Albinus
0 siblings, 1 reply; 4+ messages in thread
From: mano155 @ 2017-03-18 1:49 UTC (permalink / raw)
To: 26156
On the most recent version, if tramp is loaded, expand-file-name does
not expand ~ properly when the second argument is "/". This breaks
breaks magit-clone, though weirdly, that command only fails if the
active point is in a dired buffer. To clarify, "~" is absolute (per the
docstring for file-name-absolute-p), but it is not canonical (per the
docstring for expand-file-name).
Bisecting, the breaking change was 19a04b4c32.
Starting from "emacs -Q":
(expand-file-name "~" "/")
"/home/sh0e"
(expand-file-name "~/" "/")
"/home/sh0e/"
(require 'tramp)
tramp
(expand-file-name "~" "/")
"~"
(expand-file-name "~/" "/")
"~/build/"
In GNU Emacs 26.0.50 (build 2, x86_64-unknown-linux-gnu, GTK+ Version 3.22.10)
of 2017-03-14 built on topd0g
Repository revision: c66aaa61639e72a70a4f2c4bc73645048caebe53
Windowing system distributor 'The X.Org Foundation', version 11.0.11902000
System Description: Arch Linux
Recent messages:
Mark set
report-emacs-bug-hook: M-x report-emacs-bug was canceled, please read *Bug Help* buffer
Mark set [2 times]
Sending...
message-send: No methods specified to send by
Mark set
Sending...
message-send: No methods specified to send by
Mark set
Making completion list... [2 times]
Configured using:
'configure --with-xwidgets'
Configured features:
XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GCONF GSETTINGS
NOTIFY ACL GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB
TOOLKIT_SCROLL_BARS GTK3 X11 XWIDGETS LIBSYSTEMD
Important settings:
value of $LC_CTYPE: hu_HU.utf8
value of $LANG: hu_HU.utf8
value of $XMODIFIERS: @im=fcitx
locale-coding-system: utf-8-unix
Major mode: Lisp Interaction
Minor modes in effect:
shell-dirtrack-mode: t
tooltip-mode: t
global-eldoc-mode: t
electric-indent-mode: t
mouse-wheel-mode: t
tool-bar-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
blink-cursor-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
line-number-mode: t
transient-mark-mode: t
Load-path shadows:
None found.
Features:
(network-stream nsm starttls tls gnutls mailalias smtpmail cus-edit
cus-start cus-load wid-edit pp shadow sort mail-extr emacsbug message
puny seq rfc822 mml mml-sec epa derived epg epg-config gnus-util rmail
rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231
mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums
mm-util mail-prsvr mail-utils thingatpt help-fns radix-tree tramp
tramp-compat tramp-loaddefs trampver ucs-normalize shell pcomplete
comint ansi-color ring parse-time format-spec advice auth-source cl-seq
eieio byte-opt subr-x bytecomp byte-compile cl-extra help-mode easymenu
cconv eieio-core cl-macs gv eieio-loaddefs cl-loaddefs pcase cl-lib
password-cache dired dired-loaddefs time-date mule-util tooltip eldoc
electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/x-win
x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode elisp-mode lisp-mode
prog-mode register page menu-bar rfn-eshadow isearch timer select
scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang
vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
hebrew greek romanian slovak czech european ethiopic indian cyrillic
chinese composite charscript case-table epa-hook jka-cmpr-hook help
simple abbrev obarray minibuffer cl-preloaded nadvice loaddefs button
faces cus-face macroexp files text-properties overlay sha1 md5 base64
format env code-pages mule custom widget hashtable-print-readable
backquote dbusbind inotify dynamic-setting system-font-setting
font-render-setting xwidget-internal move-toolbar gtk x-toolkit x
multi-tty make-network-process emacs)
Memory information:
((conses 16 242235 33519)
(symbols 48 23632 17)
(miscs 40 98 441)
(strings 32 27983 6861)
(string-bytes 1 879172)
(vectors 16 39469)
(vector-slots 8 750802 14512)
(floats 8 73 394)
(intervals 56 874 430)
(buffers 976 16))
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#26156: 26.0.50; expand-file-name fails to expand ~ if tramp is loaded and "/" is specified
2017-03-18 1:49 bug#26156: 26.0.50; expand-file-name fails to expand ~ if tramp is loaded and "/" is specified mano155
@ 2017-03-18 16:46 ` Michael Albinus
2017-03-18 17:53 ` Bruce V Chiarelli
[not found] ` <87inn6sc7c.fsf@topd0g>
0 siblings, 2 replies; 4+ messages in thread
From: Michael Albinus @ 2017-03-18 16:46 UTC (permalink / raw)
To: mano155; +Cc: 26156
mano155@gmail.com writes:
Hi,
> On the most recent version, if tramp is loaded, expand-file-name does
> not expand ~ properly when the second argument is "/". This breaks
> breaks magit-clone, though weirdly, that command only fails if the
> active point is in a dired buffer. To clarify, "~" is absolute (per the
> docstring for file-name-absolute-p), but it is not canonical (per the
> docstring for expand-file-name).
I've pushed a fix to master, could you pls check?
Best regards, Michael.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-18 19:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-18 1:49 bug#26156: 26.0.50; expand-file-name fails to expand ~ if tramp is loaded and "/" is specified mano155
2017-03-18 16:46 ` Michael Albinus
2017-03-18 17:53 ` Bruce V Chiarelli
[not found] ` <87inn6sc7c.fsf@topd0g>
2017-03-18 19:20 ` Michael Albinus
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.