GNU bug report logs -
#21931
25.0.50; behaviour of read-directory-name with double slashes
Previous Next
Reported by: Nicolas Richard <youngfrog <at> members.fsf.org>
Date: Mon, 16 Nov 2015 06:29:01 UTC
Severity: normal
Found in version 25.0.50
Done: Nicolas Richard <youngfrog <at> members.fsf.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
After I eval:
(let ((default-directory "/tmp"))
(list (read-directory-name "foo" "/tmp/src/")
(read-directory-name "foo" "/tmp/src//")
(read-directory-name "foo" "src/")
(read-directory-name "foo" "src//")
(read-directory-name "foo" "foo//src/")
(read-directory-name "foo" "foo//src//")))
and hit RET RET RET RET, I get :
("/tmp/src/" "/" "src/" "/" "/src/" "/")
Is this intended ?
We could normalize the directory name via expand-file-name in all cases,
e.g. :
modified lisp/files.el
@@ -648,8 +648,7 @@ read-directory-name
(unless dir
(setq dir default-directory))
(read-file-name prompt dir (or default-dirname
- (if initial (expand-file-name initial dir)
- dir))
+ (expand-file-name (or initial "") dir))
mustmatch initial
'file-directory-p))
but the docstring states "Value is not expanded---you must call
`expand-file-name' yourself." so I guess the behaviour is important (and
I guess e.g. for tramp).
Should read-file-name be fixed or should the callers make sure to not
use double slashes ?
In GNU Emacs 25.0.50.1 (i686-pc-linux-gnu, X toolkit, Xaw scroll bars)
of 2015-11-14
Repository revision: ed2e7e20ae0945288c98091f308f5460c3453873
Windowing system distributor 'The X.Org Foundation', version 11.0.11501000
System Description: Ubuntu 14.04.3 LTS
This bug report was last modified 9 years and 183 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.