Added the preceding ">>> " before the message "Printing the contents of file..." to make the output more readable. * src/main.cc
@@ -1,3 +1,9 @@
+2008-12-23 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
+
+ Added the preceding ">>> " before the message "Printing the
+ contents of file..." to make the output more readable.
+ * src/main.cc
2008-12-23 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added try-catch block in the loop in showFiles() to continue the
@@ -125,6 +125,7 @@ static void showFiles(const std::deque<std::string>& uris, const Option* op)
ProtocolDetector dt;
for(std::deque<std::string>::const_iterator i = uris.begin();
i != uris.end(); ++i) {
+ printf(">>> ");
printf(MSG_SHOW_FILES, (*i).c_str());
printf("\n");
try {