diff --git a/lib/master.pike.in b/lib/master.pike.in index be7b7d920030cdb88fe34aa741b5438e4bfbff10..7074737e9046bd3b3eb078cc3b73516e6fba4a92 100644 --- a/lib/master.pike.in +++ b/lib/master.pike.in @@ -1,6 +1,6 @@ /* -*- Pike -*- * - * $Id: master.pike.in,v 1.112 2000/04/08 01:30:19 hubbe Exp $ + * $Id: master.pike.in,v 1.113 2000/04/10 16:09:32 grubba Exp $ * * Master-file for Pike. * @@ -41,7 +41,7 @@ int is_absolute_path(string p) return p[0]=='/'; } -string *explode_path(string p) +array(string) explode_path(string p) { #ifdef __NT__ p=replace(p,"\\","/"); @@ -78,7 +78,7 @@ object low_cast_to_object(string oname, string current_file); array(string) pike_include_path=({}); array(string) pike_module_path=({}); array(string) pike_program_path=({}); -int want_warnings = 0; +int want_warnings = 1; #ifdef PIKE_AUTORELOAD @@ -1015,7 +1015,7 @@ void _main(array(string) orig_argv, array(string) env) switch(opts[0]) { case "version": - werror(version() + " Copyright (C) 1994-1997 Fredrik Hübinette\n" + werror(version() + " Copyright © 1994-2000 Fredrik Hübinette\n" "Pike comes with ABSOLUTELY NO WARRANTY; This is free software and you are\n" "welcome to redistribute it under certain conditions; Read the files\n" "COPYING and DISCLAIMER in the Pike distribution for more details.\n");