comparison 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
comparison
equal deleted inserted replaced
16765:80b9a9e1c965 16766:7268845c0a1e
1319 jcls = jni_env->GetObjectClass (jobj); 1319 jcls = jni_env->GetObjectClass (jobj);
1320 } 1320 }
1321 else 1321 else
1322 { 1322 {
1323 found = 0; 1323 found = 0;
1324 error ("cannot convert matrix of type `%s'", val.class_name ().c_str ()); 1324 error ("cannot convert matrix of type '%s'", val.class_name ().c_str ());
1325 } 1325 }
1326 } 1326 }
1327 else if (val.is_cellstr ()) 1327 else if (val.is_cellstr ())
1328 { 1328 {
1329 Cell cellStr = val.cell_value (); 1329 Cell cellStr = val.cell_value ();