all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: dhruva <dhruvakm@gmail.com>
To: "Emacs Devel" <emacs-devel@gnu.org>
Subject: Re: Build failure on M$ (using MSVC): Patch enclosed
Date: Tue, 20 May 2008 14:28:04 +0530	[thread overview]
Message-ID: <e3f230850805200158g11cc2140k7ae83ee78b73bb9d@mail.gmail.com> (raw)
In-Reply-To: <e3f230850805200126k29ea59d6wfabd776cee85dbf8@mail.gmail.com>

The below patch fixes the bug of infinite looping.

diff --git a/lisp/files.el b/lisp/files.el
index ee5efe4..c680d32 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -3120,8 +3120,9 @@ If the file is in a registered project, a cons from
 `project-directory-alist' is returned.
 Otherwise this returns nil."
   (let ((dir (file-name-directory file))
+       (root (expand-file-name "/"))
        (result nil))
-    (while (and (not (string= dir "/"))
+    (while (and (not (string= dir root))
                (not result))
       (cond
        ((setq result (assoc dir project-directory-alist))

-dk

On Tue, May 20, 2008 at 1:56 PM, dhruva <dhruvakm@gmail.com> wrote:
> Hi,
>  I figured out the problem. A call to find-file calls
> hack-project-variables which calls project-find-settings-file which
> tries to search for the file from the root (C: for me). It keeps
> looping on "C:\.dir-settings.el". I saw that in a call to stat. I just
> created an empty .dir-settings.el under the "C:" and the build is
> going on fine (with my earlier path to fix the compilation error -
> that needs to be made MSVC specific as it works with GCC/MinGW). I
> will try to find the real cause for this looping once I am done with
> the build.
>
> -dhruva
>
> On Tue, May 20, 2008 at 11:40 AM, dhruva <dhruvakm@gmail.com> wrote:
>> Hi,
>>  I tried doing a 'nmake bootstrap' and notice and infinite recursion
>> (or loop) in garbage collection. The call to 'mark_object' never comes
>> out. The following command (for emacs built with MSVC on WXP)
>> reproduces the problem consistently. I will try getting a proper back
>> trace and mail it.
>>
>> "C:\users\dhruva\stub\repo\git\emacs\lisp/../bin/emacs.exe" -batch
>> --no-init-file --no-site-file --multibyte  -l autoload  --eval "(setq
>> generate-autoload-cookie \";;;###mh-autoload\")"  --eval "(setq
>> find-file-suppress-same-file-warnings t)"  --eval "(setq
>> make-backup-files nil)"  -f w32-batch-update-autoloads
>> "C:/users/dhruva/stub/repo/git/emacs/lisp/mh-e/mh-loaddefs.el" ./mh-e
>>
>> -dhruva
>>
>> --
>> Contents reflect my personal views only!
>>
>
>
>
> --
> Contents reflect my personal views only!
>



-- 
Contents reflect my personal views only!




  reply	other threads:[~2008-05-20  8:58 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-20  4:58 Build failure on M$ (using MSVC): Patch enclosed dhruva
2008-05-20  6:10 ` dhruva
2008-05-20  8:26   ` dhruva
2008-05-20  8:58     ` dhruva [this message]
2008-05-20  9:46       ` Jason Rumney
2008-05-20 10:21         ` David Kastrup
2008-05-20 11:57           ` dhruva
2008-05-20 12:01             ` dhruva
2008-05-20 18:26       ` Eli Zaretskii
2008-05-20 12:11     ` Herbert Euler
2008-05-20 18:30       ` Eli Zaretskii
2008-05-20 18:12 ` Eli Zaretskii
2008-05-21  3:13   ` dhruva
2008-05-21 17:28     ` Stefan Monnier
2008-05-22  3:51       ` dhruva
2008-05-22  4:46         ` Stefan Monnier
2008-05-22  5:03           ` dhruva
2008-05-22  6:52             ` David Kastrup
2008-05-22  7:10               ` dhruva
2008-05-22  7:32                 ` David Kastrup
2008-05-22 15:49                 ` Stefan Monnier
2008-05-22 15:45               ` Stefan Monnier
2008-05-22  6:56             ` dhruva
2008-05-23  8:30               ` Eli Zaretskii
2008-05-23  9:15                 ` Jason Rumney
2008-05-22  8:32         ` Jason Rumney
2008-05-22  9:10           ` dhruva
2008-05-22  9:29             ` dhruva
2008-05-22 12:31               ` Jason Rumney
2008-05-22 13:10                 ` Jason Rumney
2008-05-22 13:33                   ` Miles Bader

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=e3f230850805200158g11cc2140k7ae83ee78b73bb9d@mail.gmail.com \
    --to=dhruvakm@gmail.com \
    --cc=emacs-devel@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.