# HG changeset patch # User jwe # Date 1111436739 0 # Node ID 189fe4f85c77277f0096b476fc02a5afc41e558a # Parent 6c4677ba0784ec701bc7143369bcc4c010fd2954 [project @ 2005-03-21 20:25:39 by jwe] diff --git a/PROJECTS b/PROJECTS --- a/PROJECTS +++ b/PROJECTS @@ -493,6 +493,9 @@ matrix in memory and change one or more elements without generating a second copy of the data. + * Use nanosleep instead of usleep if it is available? Apparently + nanosleep is to be preferred over usleep on Solaris systems. + ------- History: ------- diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-03-21 John W. Eaton + + * octave.cc (maximum_braindamage): + Don't set warn_matlab_incompatible to true. + 2005-03-17 John W. Eaton * lex.l (class bracket_brace_paren_nesting_level): Use static diff --git a/src/octave.cc b/src/octave.cc --- a/src/octave.cc +++ b/src/octave.cc @@ -436,7 +436,6 @@ bind_builtin_variable ("page_screen_output", false); bind_builtin_variable ("print_empty_dimensions", false); bind_builtin_variable ("warn_function_name_clash", false); - bind_builtin_variable ("warn_matlab_incompatible", true); } // You guessed it.