emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#25659: closed ([PATCH] xdg: Fix environment variab


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#25659: closed ([PATCH] xdg: Fix environment variable for xdg-data-dirs)
Date: Thu, 09 Feb 2017 12:20:02 +0000

Your message dated Thu, 09 Feb 2017 07:19:43 -0500
with message-id <address@hidden>
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
address@hidden)


-- 
25659: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25659
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- 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




--- End Message ---
--- Begin Message --- Subject: Re: bug#25659: [PATCH] xdg: Fix environment variable for xdg-data-dirs Date: Thu, 09 Feb 2017 07:19:43 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)
Steven Allen <address@hidden> writes:

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

Applied, thanks.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]