# HG changeset patch # User Richard M. Stallman # Date 809710320 0 # Node ID ec9ae189a27505381c13b37d5706621a6970c6d5 # Parent b5262e218fa818b9c878f331061779c455c53b5f (decode_env_path): Use ".", not nil, for current dir. diff -r b5262e218fa8 -r ec9ae189a275 src/emacs.c --- a/src/emacs.c Tue Aug 29 15:31:46 1995 +0000 +++ b/src/emacs.c Tue Aug 29 15:32:00 1995 +0000 @@ -1348,7 +1348,8 @@ { 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;