Mercurial > hg > octave-nkf
diff scripts/pkg/private/write_index.m @ 16760:1c8b6ab2c8ae
Fix typo introduced in b7667fcb9fbc (cstrtrim does not exist).
author | Carnë Draug <carandraug@octave.org> |
---|---|
date | Fri, 14 Jun 2013 17:33:05 +0100 |
parents | b7667fcb9fbc |
children | d63878346099 |
line wrap: on
line diff
--- a/scripts/pkg/private/write_index.m +++ b/scripts/pkg/private/write_index.m @@ -74,7 +74,7 @@ if (! isfield (desc, "categories")) error ("the DESCRIPTION file must have a Categories field, when no INDEX file is given"); endif - categories = cstrtrim (strsplit (desc.categories, ",")); + categories = strtrim (strsplit (desc.categories, ",")); if (length (categories) < 1) error ("the Category field is empty"); endif