Mercurial > hg > octave-lyh
comparison src/pt-mat.cc @ 5391:a495ec7ee3d3
[project @ 2005-06-15 03:53:46 by jwe]
author | jwe |
---|---|
date | Wed, 15 Jun 2005 03:53:47 +0000 |
parents | 4c8a2e4e0717 |
children | dae5ba706ff2 |
comparison
equal
deleted
inserted
replaced
5390:e81543fdbe01 | 5391:a495ec7ee3d3 |
---|---|
44 | 44 |
45 // The character to fill with when creating string arrays. | 45 // The character to fill with when creating string arrays. |
46 char Vstring_fill_char = ' '; | 46 char Vstring_fill_char = ' '; |
47 | 47 |
48 // Warn if concatenating double and single quoted strings. | 48 // Warn if concatenating double and single quoted strings. |
49 char Vwarn_string_concat = true; | 49 char Vwarn_string_concat = false; |
50 | 50 |
51 // General matrices. This list type is much more work to handle than | 51 // General matrices. This list type is much more work to handle than |
52 // constant matrices, but it allows us to construct matrices from | 52 // constant matrices, but it allows us to construct matrices from |
53 // other matrices, variables, and functions. | 53 // other matrices, variables, and functions. |
54 | 54 |
769 \n\ | 769 \n\ |
770 @noindent\n\ | 770 @noindent\n\ |
771 The default value is 0.\n\ | 771 The default value is 0.\n\ |
772 @end defvr"); | 772 @end defvr"); |
773 | 773 |
774 DEFVAR (warn_string_concat, true, warn_string_concat, | 774 DEFVAR (warn_string_concat, false, warn_string_concat, |
775 "-*- texinfo -*-\n\ | 775 "-*- texinfo -*-\n\ |
776 @defvr {Built-in Variable} warn_string_concat\n\ | 776 @defvr {Built-in Variable} warn_string_concat\n\ |
777 If the value of @code{warn_string_concat} is nonzero, print a\n\ | 777 If the value of @code{warn_string_concat} is nonzero, print a\n\ |
778 warning when concatenating a mixture of double and single quoted strings.\n\ | 778 warning when concatenating a mixture of double and single quoted strings.\n\ |
779 The default value is 1.\n\ | 779 The default value is 1.\n\ |