comparison src/user-prefs.cc @ 1116:0e2974c1cc37

[project @ 1995-02-15 21:16:26 by jwe]
author jwe
date Wed, 15 Feb 1995 21:19:47 +0000
parents 51fd9e40a7f7
children 46619c5ca048
comparison
equal deleted inserted replaced
1115:ce9b0bb7916d 1116:0e2974c1cc37
62 user_pref.resize_on_range_error = 0; 62 user_pref.resize_on_range_error = 0;
63 user_pref.return_last_computed_value = 0; 63 user_pref.return_last_computed_value = 0;
64 user_pref.save_precision = 0; 64 user_pref.save_precision = 0;
65 user_pref.silent_functions = 0; 65 user_pref.silent_functions = 0;
66 user_pref.split_long_rows = 0; 66 user_pref.split_long_rows = 0;
67 user_pref.suppress_verbose_help_message = 0;
67 user_pref.treat_neg_dim_as_zero = 0; 68 user_pref.treat_neg_dim_as_zero = 0;
68 user_pref.warn_assign_as_truth_value = 0; 69 user_pref.warn_assign_as_truth_value = 0;
69 user_pref.warn_comma_in_global_decl = 0; 70 user_pref.warn_comma_in_global_decl = 0;
70 user_pref.warn_divide_by_zero = 0; 71 user_pref.warn_divide_by_zero = 0;
71 user_pref.warn_function_name_clash = 0; 72 user_pref.warn_function_name_clash = 0;
361 362
362 return 0; 363 return 0;
363 } 364 }
364 365
365 366
367 // Suppress printing of additional help message in help and usage
368 // functions?
369
370 int
371 suppress_verbose_help_message (void)
372 {
373 user_pref.suppress_verbose_help_message =
374 check_str_pref ("suppress_verbose_help_message");
375
376 return 0;
377 }
378
379
366 // Should things like: 380 // Should things like:
367 // 381 //
368 // octave> ones (-1, 5) 382 // octave> ones (-1, 5)
369 // 383 //
370 // result in an empty matrix or an error? 384 // result in an empty matrix or an error?