# HG changeset patch # User Jaroslav Hajek # Date 1269432985 -3600 # Node ID 62f8ae5ab2cc23ce788f99fd4b3217b7f32a84c9 # Parent 537d9fbba9c0a1ff4a3e883c1aaaf692569cbc54 warn about missing matlab funcs in help diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2010-03-24 Jaroslav Hajek + + * help/help.m: Maybe warn about unimplemented Matlab functions. + 2010-03-24 Jaroslav Hajek * miscellaneous/unimplemented.m: New function. diff --git a/scripts/help/help.m b/scripts/help/help.m --- a/scripts/help/help.m +++ b/scripts/help/help.m @@ -119,6 +119,8 @@ if (found) puts (__additional_help_message__ ()); + else + feval (missing_function_hook, name); endif endfunction