diff libinterp/octave-value/ov-java.cc @ 16766:7268845c0a1e

avoid backquote in error messages, some uses in doc strings * libinterp/corefcn/quadcc.cc, libinterp/interpfcn/file-io.cc, libinterp/octave-value/ov-java.cc, scripts/image/colormap.m, scripts/image/rgbplot.m, scripts/miscellaneous/xor.m, scripts/plot/print.m, scripts/special-matrix/gallery.m, scripts/statistics/base/quantile.m, scripts/strings/strsplit.m: Use ' instead of ` in error messages. Don't use sprintf unnecessarily in error messages. Use @code or @samp instead of `' in doc strings.
author John W. Eaton <jwe@octave.org>
date Tue, 18 Jun 2013 06:39:01 -0400
parents 4a1300ed5d3c
children bc924baa2c4e
line wrap: on
line diff
--- a/libinterp/octave-value/ov-java.cc
+++ b/libinterp/octave-value/ov-java.cc
@@ -1321,7 +1321,7 @@
       else
         {
           found = 0;
-          error ("cannot convert matrix of type `%s'", val.class_name ().c_str ());
+          error ("cannot convert matrix of type '%s'", val.class_name ().c_str ());
         }
     }
   else if (val.is_cellstr ())