Changeset 17344 for trunk/FACT++


Ignore:
Timestamp:
11/23/13 12:59:16 (11 years ago)
Author:
tbretz
Message:
We don't need a warning if the history file cannot be opened, it might simply not exist.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Readline.cc

    r16937 r17344  
    129129
    130130    // Read history file
    131     if (read_history(fName.c_str()))
    132         cout << "WARNING - Reading " << fName << ": " << strerror(errno) << endl;
     131    read_history(fName.c_str());
     132    //if (read_history(fName.c_str()))
     133    //    cout << "WARNING - Reading " << fName << ": " << strerror(errno) << endl;
    133134
    134135    fCommandLog.open(string(prgname)+".evt");
Note: See TracChangeset for help on using the changeset viewer.