On Sun, Nov 01, 2015 at 10:33:09PM +0100, Richard Heck wrote: > commit 4c16c61579d37f00c252ace8cf79d0573ca626bb > Author: Richard Heck <rgh...@lyx.org> > Date: Sun Nov 1 16:32:52 2015 -0500 > > Add warning message if we do no conversion.
Why have a warning? We do not have a warning for: lyx -e lyx21x Customization.21.lyx where Customization.21.lyx is already in 2.1.x format. There is no warning for: convert abc.jpg abc.jpg ffmpeg -i abc.flac abc.flac These are a little different though because I think they do actually do something (not sure what though). In the programming languages I know, there is no warning for something like: tolower('abc') Or echo "abc" | sed 's/a/a/' On the other hand, I do see some reasoning for the change. Why would someone try to convert a file to the same format? If they are doing that, then maybe they misunderstood something so we should give a warning to make sure they did not make a mistake and want to export to a different format. Is that the correct reasoning? Scott