From: Steven Allen Date: Thu, 9 Feb 2017 06:08:09 +0000 (-0800) Subject: Fix environment variable for xdg-data-dirs X-Git-Tag: emacs-26.0.90~848^2~13 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3817a44a18fb911365b5899db8c84c7a87eb0f5d;p=emacs.git Fix environment variable for xdg-data-dirs * lisp/xdg.el (xdg-data-dirs): Use XDG_DATA_DIRS, not XDG_CONFIG_DIRS Copyright-paperwork-exempt: yes --- diff --git a/lisp/xdg.el b/lisp/xdg.el index 51218e339d1..b11e104e2b7 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))))