aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorThomas Lord <lord@cygnus>1994-06-15 08:04:44 +0000
committerThomas Lord <lord@cygnus>1994-06-15 08:04:44 +0000
commitf36b58b10ca1535674626653f5c795fb3236b255 (patch)
tree7c0a68c2bd79c663607513eab9f2ad911df02d6a /gdb/top.c
parentc96386c4d8bd690856b5742cd783492e8ec9e806 (diff)
downloadfsf-binutils-gdb-f36b58b10ca1535674626653f5c795fb3236b255.zip
fsf-binutils-gdb-f36b58b10ca1535674626653f5c795fb3236b255.tar.gz
fsf-binutils-gdb-f36b58b10ca1535674626653f5c795fb3236b255.tar.bz2
Init current_directory.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 29c2292..1fe7549 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 */