changeset 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 dc76e3909d36
children c6d61dca5acd
files scripts/pkg/private/write_index.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/pkg/private/write_index.m	Thu Jun 13 11:56:09 2013 -0400
+++ b/scripts/pkg/private/write_index.m	Fri Jun 14 17:33:05 2013 +0100
@@ -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