changeset 8860:257ed585b471

gen_doc_cache.m: call __makeinfo__, not makeinfo
author Jason Riedy <jason@acm.org>
date Tue, 24 Feb 2009 14:13:32 -0500
parents 46fdf8714acf
children 31f864877246
files scripts/ChangeLog scripts/help/gen_doc_cache.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Tue Feb 24 19:25:25 2009 +0100
+++ b/scripts/ChangeLog	Tue Feb 24 14:13:32 2009 -0500
@@ -1,3 +1,7 @@
+2009-02-24  Jason Riedy  <jason@acm.org>
+
+	* help/gen_doc_cache.m: Call __makeinfo__, not makeinfo.
+
 2009-02-24  Jaroslav Hajek  <highegg@gmail.com>
 
 	* optimization/fsolve.m: Update niter after each iteration, not just
--- a/scripts/help/gen_doc_cache.m	Tue Feb 24 19:25:25 2009 +0100
+++ b/scripts/help/gen_doc_cache.m	Tue Feb 24 14:13:32 2009 -0500
@@ -60,7 +60,7 @@
     case "plain text"
       status = 0;
     case "texinfo"
-      [text, status] = makeinfo (text, "plain text");
+      [text, status] = __makeinfo__ (text, "plain text");
     case "html"
       [text, status] = strip_html_tags (text);
     otherwise