]> git.eshelyaron.com Git - emacs.git/commitdiff
(decode_env_path): Use ".", not nil, for current dir.
authorRichard M. Stallman <rms@gnu.org>
Tue, 29 Aug 1995 15:32:00 +0000 (15:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 29 Aug 1995 15:32:00 +0000 (15:32 +0000)
src/emacs.c

index ef84e0aac04dc09a8967267a0f96bf81fcfa29f3..40ecc3d15bd2631b41374ba9d6293b537ebeeb04 100644 (file)
@@ -1348,7 +1348,8 @@ decode_env_path (evarname, defalt)
     {
       p = index (path, SEPCHAR);
       if (!p) p = path + strlen (path);
-      lpath = Fcons (p - path ? make_string (path, p - path) : Qnil,
+      lpath = Fcons (p - path ? make_string (path, p - path)
+                    : build_string ("."),
                     lpath);
       if (*p)
        path = p + 1;