From 1e19db9d3a15f81393bb196de074ad8be1fb2fcb Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 16 Feb 1989 11:24:01 +0000 Subject: [PATCH] empty string in directory list now means current directory --- lang/m2/comp/defmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/m2/comp/defmodule.c b/lang/m2/comp/defmodule.c index db3090f0f..2a9325d93 100644 --- a/lang/m2/comp/defmodule.c +++ b/lang/m2/comp/defmodule.c @@ -52,7 +52,7 @@ getwdir(fn) *p = '/'; return fn; } - return "."; + return ""; } STATIC -- 2.34.1