Mercurial > hg > octave-nkf
diff scripts/help/__makeinfo__.m @ 8877:2c8b2399247b
implement strsplit; deprecate split
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 26 Feb 2009 10:29:59 +0100 |
parents | e0fbf17a17bb |
children | 9eb6e8f2b937 |
line wrap: on
line diff
--- a/scripts/help/__makeinfo__.m +++ b/scripts/help/__makeinfo__.m @@ -107,7 +107,7 @@ endif endif see_also_args = text (bracket_start+1:(stop-1)); - see_also_args = strtrim (cellstr (split (see_also_args, ","))); + see_also_args = strtrim (strsplit (see_also_args, ",")); expanded = see_also (see_also_args); text = strcat (text (1:start-1), expanded, text (stop+1:end)); endif