changeset 10445:62f8ae5ab2cc

warn about missing matlab funcs in help
author Jaroslav Hajek <highegg@gmail.com>
date Wed, 24 Mar 2010 13:16:25 +0100
parents 537d9fbba9c0
children ba932ad87a04
files scripts/ChangeLog scripts/help/help.m
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Mar 24 13:10:36 2010 +0100
+++ b/scripts/ChangeLog	Wed Mar 24 13:16:25 2010 +0100
@@ -1,3 +1,7 @@
+2010-03-24  Jaroslav Hajek  <highegg@gmail.com>
+
+	* help/help.m: Maybe warn about unimplemented Matlab functions.
+
 2010-03-24  Jaroslav Hajek  <highegg@gmail.com>
 
 	* miscellaneous/unimplemented.m: New function.
--- a/scripts/help/help.m	Wed Mar 24 13:10:36 2010 +0100
+++ b/scripts/help/help.m	Wed Mar 24 13:16:25 2010 +0100
@@ -119,6 +119,8 @@
 
   if (found)
     puts (__additional_help_message__ ());
+  else
+    feval (missing_function_hook, name);
   endif
 
 endfunction