# HG changeset patch # User Rik # Date 1439828647 25200 # Node ID 1690807b226c0be62e2e0d3904af2c9de4224c09 # Parent c6224b4e7774e94beb142e2c5e1e79e4b89e9c98 Fix incorrect error message when saving with -text and -float-binary options. * load-save.cc (Fsave): Change error message to say that using both '-text' and '-float-binary' options together is disallowed. diff -r c6224b4e7774 -r 1690807b226c libinterp/corefcn/load-save.cc --- a/libinterp/corefcn/load-save.cc Mon Aug 17 09:20:03 2015 -0700 +++ b/libinterp/corefcn/load-save.cc Mon Aug 17 09:24:07 2015 -0700 @@ -1642,7 +1642,7 @@ if (save_as_floats && format == LS_TEXT) { - error ("save: cannot specify both -ascii and -float-binary"); + error ("save: cannot specify both -text and -float-binary"); return retval; }