# HG changeset patch # User Rik # Date 1379344816 25200 # Node ID cc7815488981bea38d0170fb4d21c39691de9260 # Parent 8c22a8d428332d680e47ea1dec22c04e02dedb10 __makeinfo__.m: Add documentation note to code about use of 3rd argument. * scripts/help/__makeinfo__.m: Add note that code for processing 3rd argument can not be deleted until generate_package_html function in Octave-Forge is updated. diff -r 8c22a8d42833 -r cc7815488981 scripts/help/__makeinfo__.m --- a/scripts/help/__makeinfo__.m Mon Sep 16 08:14:56 2013 -0700 +++ b/scripts/help/__makeinfo__.m Mon Sep 16 08:20:16 2013 -0700 @@ -72,6 +72,9 @@ error ("__makeinfo__: second input argument must be a string"); endif + ## NOTE: The 3rd argument is used by Octave-Forge function + ## generate_package_html, not by core Octave. This functionality + ## can only be removed when that function has been updated. if (nargin < 3) if (strcmpi (output_type, "plain text")) fsee_also = @(T) strcat ...