From: Thomas Lord Date: Wed, 15 Jun 1994 08:04:44 +0000 (+0000) Subject: Init current_directory. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f36b58b10ca1535674626653f5c795fb3236b255;p=binutils-gdb.git Init current_directory. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 50bfa3c70ec..ac1658a41d2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Wed Jun 15 00:41:03 1994 Tom Lord (lord@rtl.cygnus.com) + + * top.c (gdb_init): Init current_directory in gdb_init. Probably + the identical initialization can be deleted from main.c, but i + haven't done so just in case. + Tue Jun 14 17:24:41 1994 Tom Lord (lord@x1.cygnus.com) * gdba.el: Added menu windows and slightly improved window diff --git a/gdb/top.c b/gdb/top.c index 29c2292451e..1fe7549ef50 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -484,6 +484,9 @@ gdb_init () { /* Run the init function of each source file */ + getcwd (dirbuf, sizeof (dirbuf)); + current_directory = dirbuf; + init_cmd_lists (); /* This needs to be done first */ initialize_all_files (); init_main (); /* But that omits this file! Do it now */