diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/xdg.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |