Mercurial > hg > octave-jordi
diff libinterp/interpfcn/graphics.in.h @ 15468:6437fa7263dd
use ' instead of ` in error messages, warnings and most comments
* qtinfo/parser.h, file-io.cc, graphics.in.h, lex.ll, version.in.h,
interp1.m, fminsearch.m, fix_depends.m, get_description.m:
Use ' instead of ` in error messages, warnings and most comments.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 01 Oct 2012 18:32:12 -0400 (2012-10-01) |
parents | 2fc554ffbc28 |
children | f915996325b7 |
line wrap: on
line diff
--- a/libinterp/interpfcn/graphics.in.h +++ b/libinterp/interpfcn/graphics.in.h @@ -3250,7 +3250,7 @@ retval = factory_properties.lookup (name); if (retval.is_undefined ()) - error ("get: invalid default property `%s'", name.c_str ()); + error ("get: invalid default property '%s'", name.c_str ()); } return retval; @@ -3261,7 +3261,7 @@ octave_value retval = factory_properties.lookup (name); if (retval.is_undefined ()) - error ("get: invalid factory default property `%s'", name.c_str ()); + error ("get: invalid factory default property '%s'", name.c_str ()); return retval; }