From 2c2c17675d9a5208c3f08176f93aee6d4c1f6c64 Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Fri, 29 Mar 2013 11:20:23 -0400 Subject: [PATCH] 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. --- src/LyX.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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; -- 2.39.2