From: Ivan Shmakov <ivan@siamics.net>
To: 19140@debbugs.gnu.org
Subject: bug#19140: dir-locals-collect-variables discrepancy in handling non-file buffers
Date: Mon, 19 Jan 2015 08:55:43 +0000 [thread overview]
Message-ID: <87y4ozrvxs.fsf@violet.siamics.net> (raw)
In-Reply-To: <b4m7fwjtegy.fsf@jpl.org> (Katsumi Yamaoka's message of "Mon, 19 Jan 2015 16:30:05 +0900")
[-- Attachment #1: Type: text/plain, Size: 1896 bytes --]
>>>>> Katsumi Yamaoka <yamaoka@jpl.org> writes:
>>>>> On Tue, 30 Dec 2014 19:45:57 +0000, Ivan Shmakov wrote:
[…]
>> * lisp/files.el (dir-locals-collect-variables): Use
>> default-directory in place of the file name while working on
>> non-file buffers (as hack-dir-local-variables already does.)
> After this change, I got to get unknown errors[1] when building
> Ma Gnus. To reproduce the same result, try the following in the
> Emacs source tree:
> % cd lisp/gnus
> % emacs -batch -Q --eval FORM
> where FORM is:
> '(with-temp-buffer (let ((default-directory (expand-file-name ".")))
> (insert-file-contents "./auth-source.el") (hack-local-variables)))'
> And you will see
> (args-out-of-range "/DIR/emacs/lisp/gnus" 21 nil)
> or something similar (where 21 is 1+ the number of letters of the dir
> name).
> The FORM above is what `custom-make-dependencies' does.
ACK, thanks. Indeed, this change assumes that the result for
(expand-file-name default-directory) ends with a ‘/’, yet that’s
only the case when default-directory itself ends with a ‘/’,
which I believe it should; consider, e. g.:
(defun cd-absolute (dir)
"Change current directory to given absolute file name DIR."
;; Put the name into directory syntax now,
;; because otherwise expand-file-name may give some bad results.
(setq dir (file-name-as-directory dir))
…)
The issue at hand could be solved by using the first of the
patches MIMEd. However, I believe that such a change may easily
mask bugs in the other parts of the code, so the proper solution
would probably be a fix to custom-make-dependencies, as per the
second patch MIMEd.
Could you please check if both indeed resolve the issue at hand?
TIA.
[…]
--
FSF associate member #7257 http://boycottsystemd.org/ … 3013 B6A0 230E 334A
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/diff, Size: 536 bytes --]
--- a/lisp/files.el 2015-01-17 19:02:00 +0000
+++ b/lisp/files.el
@@ -3604,7 +3604,8 @@ defun dir-locals-collect-variables (class-variables root variables)
Return the new variables list."
(let* ((file-name (or (buffer-file-name)
;; Handle non-file buffers, too.
- (expand-file-name default-directory)))
+ (file-name-as-directory
+ (expand-file-name default-directory))))
(sub-file-name (if file-name
;; FIXME: Why not use file-relative-name?
(substring file-name (length root)))))
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: Type: text/diff, Size: 638 bytes --]
--- a/lisp/cus-dep.el 2015-01-01 22:26:41 +0000
+++ b/lisp/cus-dep.el 2015-01-19 08:49:23 +0000
@@ -62,7 +62,8 @@ defun custom-make-dependencies ()
(while (setq subdir (pop command-line-args-left))
(message "Directory %s" subdir)
(let ((files (directory-files subdir nil "\\`[^=.].*\\.el\\'"))
- (default-directory (expand-file-name subdir))
+ (default-directory
+ (file-name-as-directory (expand-file-name subdir)))
(preloaded (concat "\\`\\(\\./+\\)?"
(regexp-opt preloaded-file-list t)
"\\.el\\'")))
next prev parent reply other threads:[~2015-01-19 8:55 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-21 16:12 bug#19140: dir-locals-collect-variables discrepancy in handling non-file buffers Ivan Shmakov
2014-12-30 19:45 ` Ivan Shmakov
2015-01-19 7:30 ` Katsumi Yamaoka
2015-01-19 8:55 ` Ivan Shmakov [this message]
2015-01-19 9:28 ` Katsumi Yamaoka
2015-01-19 9:55 ` Ivan Shmakov
2015-02-14 21:09 ` Ivan Shmakov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87y4ozrvxs.fsf@violet.siamics.net \
--to=ivan@siamics.net \
--cc=19140@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.