[svn:parrot] r48774 - branches/charset_massacre/include/parrot
nwellnhof at svn.parrot.org
nwellnhof at svn.parrot.org
Fri Sep 3 19:19:07 UTC 2010
Author: nwellnhof
Date: Fri Sep 3 19:19:07 2010
New Revision: 48774
URL: https://trac.parrot.org/parrot/changeset/48774
Log:
Fix typo
Modified:
branches/charset_massacre/include/parrot/string.h
Modified: branches/charset_massacre/include/parrot/string.h
==============================================================================
--- branches/charset_massacre/include/parrot/string.h Fri Sep 3 19:18:44 2010 (r48773)
+++ branches/charset_massacre/include/parrot/string.h Fri Sep 3 19:19:07 2010 (r48774)
@@ -45,7 +45,7 @@
#define STRING_find_cclass(interp, flags, src, offset, count) ((src)->encoding)->find_cclass((interp), (flags), (src), (offset), (count))
#define STRING_find_not_cclass(interp, flags, src, offset, count) ((src)->encoding)->find_not_cclass((interp), (flags), (src), (offset), (count))
-#define STRING_get_grapemes(interp, src, offset, count) ((src)->encoding)->get_graphemes((interp), (src), (offset), (count))
+#define STRING_get_graphemes(interp, src, offset, count) ((src)->encoding)->get_graphemes((interp), (src), (offset), (count))
#define STRING_compose(interp, src) ((src)->encoding)->compose((interp), (src))
#define STRING_decompose(interp, src) ((src)->encoding)->decompose((interp), (src))
More information about the parrot-commits
mailing list