aboutsummaryrefslogtreecommitdiff
path: root/src/index.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2012-12-19 09:36:00 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2012-12-19 09:36:00 +0000
commit2c7fd68913b585066e3140631162caa8231000d9 (patch)
treebb90649b102bbe23afd0fc03c28525252ec8e0a8 /src/index.c
parentaf8b334c147ee752c34f29f00280884a0a7fbf9c (diff)
fixing unicode characters
now that Pd iuses UTF8, we can finally have hearts... svn path=/trunk/externals/zexy/; revision=16706
Diffstat (limited to 'src/index.c')
-rw-r--r--src/index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c
index 5540358..2476a9c 100644
--- a/src/index.c
+++ b/src/index.c
@@ -329,7 +329,7 @@ static void index_free(t_index *x)
static void index_helper(t_index *x)
{
endpost();
- post("%c index :: index symbols to indices", HEARTSYMBOL);
+ post(""HEARTSYMBOL" index :: index symbols to indices");
post("<symbol> : look up the <symbol> in the index and return it's index");
post("<int> : look up the element at index <int> in the index");
post("'add <symbol>' : add a new symbol to the index-map");