Change the code to stop it outputting one unnecessary space in

Estimated hours taken: 0.1

compiler/modules.m:
	Change the code to stop it outputting one unnecessary space in
	the `.dep' files.
This commit is contained in:
Fergus Henderson
1996-12-12 11:55:15 +00:00
parent f50cffd1f8
commit 25199123e9

View File

@@ -563,7 +563,7 @@ generate_dep_file(ModuleName, DepsMap, DepStream) -->
{ select_ok_modules(Modules0, DepsMap, Modules) },
io__write_string(DepStream, ModuleName),
io__write_string(DepStream, ".ms = "),
io__write_string(DepStream, ".ms ="),
write_dependencies_list(Modules, ".m", DepStream),
io__write_string(DepStream, "\n\n"),