GNU bug report logs - #25659
[PATCH] xdg: Fix environment variable for xdg-data-dirs

Previous Next

Package: emacs;

Reported by: Steven Allen <steven <at> stebalien.com>

Date: Thu, 9 Feb 2017 06:09:02 UTC

Severity: normal

Tags: patch

Done: Mark Oteiza <mvoteiza <at> udel.edu>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Mark Oteiza <mvoteiza <at> udel.edu>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#25659: closed ([PATCH] xdg: Fix environment variable for
 xdg-data-dirs)
Date: Thu, 09 Feb 2017 12:20:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Thu, 09 Feb 2017 07:19:43 -0500
with message-id <87y3xf8skg.fsf <at> holos>
and subject line Re: bug#25659: [PATCH] xdg: Fix environment variable for xdg-data-dirs
has caused the debbugs.gnu.org bug report #25659,
regarding [PATCH] xdg: Fix environment variable for xdg-data-dirs
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
25659: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25659
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Steven Allen <steven <at> stebalien.com>
To: bug-gnu-emacs <at> gnu.org
Subject: [PATCH] xdg: Fix environment variable for xdg-data-dirs
Date: Wed,  8 Feb 2017 22:08:09 -0800
* lisp/xdg.el (xdg-data-dirs): Use XDG_DATA_DIRS, not XDG_CONFIG_DIRS

Copyright-paperwork-exempt: yes
---
 lisp/xdg.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/xdg.el b/lisp/xdg.el
index 51218e339d..b11e104e2b 100644
--- a/lisp/xdg.el
+++ b/lisp/xdg.el
@@ -69,7 +69,7 @@
 
 (defun xdg-data-dirs ()
   "Return the data directory search path as a list."
-  (let ((env (getenv "XDG_CONFIG_DIRS")))
+  (let ((env (getenv "XDG_DATA_DIRS")))
     (if (or (null env) (string= env ""))
         '("/usr/local/share/" "/usr/share/")
       (parse-colon-path env))))
-- 
2.11.1



[Message part 3 (message/rfc822, inline)]
From: Mark Oteiza <mvoteiza <at> udel.edu>
To: Steven Allen <steven <at> stebalien.com>
Cc: 25659-done <at> debbugs.gnu.org
Subject: Re: bug#25659: [PATCH] xdg: Fix environment variable for xdg-data-dirs
Date: Thu, 09 Feb 2017 07:19:43 -0500
Steven Allen <steven <at> stebalien.com> writes:

> * lisp/xdg.el (xdg-data-dirs): Use XDG_DATA_DIRS, not XDG_CONFIG_DIRS
>
> Copyright-paperwork-exempt: yes

Applied, thanks.


This bug report was last modified 8 years and 109 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.