# HG changeset patch # User John W. Eaton # Date 1459977061 14400 # Node ID fe5ed6d7fb10487b9c0f3bc36162f280fbe7561a # Parent ec77a07e422049a121656be60253a015ca62a61b * dlmread.cc (Fdlmread): Search loadpath for file (bug #47628). diff -r ec77a07e4220 -r fe5ed6d7fb10 libinterp/corefcn/dlmread.cc --- a/libinterp/corefcn/dlmread.cc Wed Apr 06 12:52:40 2016 -0700 +++ b/libinterp/corefcn/dlmread.cc Wed Apr 06 17:11:01 2016 -0400 @@ -215,6 +215,8 @@ std::string tname = file_ops::tilde_expand (fname); + tname = find_data_file_in_load_path ("dlmread", fname); + input_file.open (tname.c_str (), std::ios::in); if (! input_file)