From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Robinow Newsgroups: gmane.emacs.devel Subject: Re: Windows-specific questions about Bazaar Date: Tue, 1 Dec 2009 14:56:13 -0500 Message-ID: <4eb0089f0912011156w6ee99120n151e2a384c9facc6@mail.gmail.com> References: <834ooamrou.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1259697428 1208 80.91.229.12 (1 Dec 2009 19:57:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 1 Dec 2009 19:57:08 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 01 20:57:01 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NFYqL-000554-4c for ged-emacs-devel@m.gmane.org; Tue, 01 Dec 2009 20:57:01 +0100 Original-Received: from localhost ([127.0.0.1]:37950 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFYqK-0006xC-Ql for ged-emacs-devel@m.gmane.org; Tue, 01 Dec 2009 14:57:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFYpf-0006bQ-Lk for emacs-devel@gnu.org; Tue, 01 Dec 2009 14:56:19 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFYpa-0006Vy-Uq for emacs-devel@gnu.org; Tue, 01 Dec 2009 14:56:19 -0500 Original-Received: from [199.232.76.173] (port=39337 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFYpa-0006Vq-Qt for emacs-devel@gnu.org; Tue, 01 Dec 2009 14:56:14 -0500 Original-Received: from mail-yw0-f172.google.com ([209.85.211.172]:48207) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NFYpa-00018X-LQ for emacs-devel@gnu.org; Tue, 01 Dec 2009 14:56:14 -0500 Original-Received: by ywh2 with SMTP id 2so4796083ywh.27 for ; Tue, 01 Dec 2009 11:56:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=WIUB/ZhOMBetBawotA3RuHJcXzXQIUyKcE29yy1VNWg=; b=Tqiy4gjzlYzVNW4D1xVLnWuIjVz1Y7NVX7YVyotKnf3fCyojpfB38TaY4Bf/t0kTQp kG2mfItnYQnTDH38c//dar8g6tqbioWFnt3NpKl+V0mZSxePz1giP5H1RXrlLeyZfuBT NjYhBpQ0/nsqMPO4ddlNhNGDNBF8KgE5qhJEI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=YW/aYNGDNO90wq0KpkHpYd+jFxrYEOAAqvqMc+Hp4iHykSzp/gdLmTlrg2HvfVI3W6 VcTj5hPwQ4bDyKcyd1jv8Bn8D4dsyZmZrkTyXatqjYrTwhRhdQlxaqgsBRYP7x2PXrq9 VuZ2YloXVoZVRA70B90IccjPz3ik6n21JAOjA= Original-Received: by 10.101.167.30 with SMTP id u30mr2835092ano.147.1259697373604; Tue, 01 Dec 2009 11:56:13 -0800 (PST) In-Reply-To: <834ooamrou.fsf@gnu.org> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:118054 Archived-At: On Tue, Dec 1, 2009 at 2:15 PM, Eli Zaretskii wrote: > =A0. Does Bazaar honor $HOME on Windows, or is $BZR_HOME the only > =A0 variable it looks at, before falling back on the default location? It appears to check BZR_HOME, APPDATA, and HOME in that order. I don't think deleting APPDATA is a good idea, so the check for HOME isn't really useful. See config_dir() in bzrlib/config.py in bzr-2.0.2 There's similar code in win32utils.py for locating the log file. [Note the TODO in config_dir() ]