From: Scott Kostyshak Date: Fri, 29 Mar 2013 15:20:23 +0000 (-0400) Subject: Revert "Exit with error if no filename given to -e switch" X-Git-Tag: 2.1.0beta1~449 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2c2c17675d9a5208c3f08176f93aee6d4c1f6c64;p=features.git Revert "Exit with error if no filename given to -e switch" This reverts commit 6df4a7bb4018c7e13e191e59fdd5d9f768ce5592. As Vincent points out, this commit is not correct. For one reason, it would incorrectly exit with error for the following syntax: lyx myfile.lyx -e pdf I will look for a correct solution to the problem specified in the message of the reverted commit. --- diff --git a/src/LyX.cpp b/src/LyX.cpp index 885e2bc302..ec522dead9 100644 --- a/src/LyX.cpp +++ b/src/LyX.cpp @@ -1119,17 +1119,13 @@ int parse_export_to(string const & type, string const & output_file, string & ba } -int parse_export(string const & type, string const & file, string & batch) +int parse_export(string const & type, string const &, string & batch) { if (type.empty()) { lyxerr << to_utf8(_("Missing file type [eg latex, ps...] after " "--export switch")) << endl; exit(1); } - if (file.empty()) { - lyxerr << to_utf8(_("Missing filename after format")) << endl; - exit(1); - } batch = "buffer-export " + type; use_gui = false; return 1;