changeset 13120:fc0ea95fbba0

__makeinfo__.m: Remove unused third input argument. * __makeinfo__.m: Remove unused third input argument.
author Rik <octave@nomad.inbox5.com>
date Fri, 09 Sep 2011 11:15:41 -0700
parents 45263c0bcaa6
children 390add500107
files scripts/help/__makeinfo__.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/help/__makeinfo__.m	Fri Sep 09 18:46:51 2011 +0200
+++ b/scripts/help/__makeinfo__.m	Fri Sep 09 11:15:41 2011 -0700
@@ -50,10 +50,10 @@
 ## The optional output argument @var{status} contains the exit status of the
 ## @code{makeinfo} program as returned by @code{system}.
 
-function [retval, status] = __makeinfo__ (text, output_type = "plain text", see_also = [])
+function [retval, status] = __makeinfo__ (text, output_type = "plain text")
 
   ## Check input
-  if (nargin < 1 || nargin > 3)
+  if (nargin < 1 || nargin > 2)
     print_usage ();
   endif