renames were incomplete

This commit is contained in:
Yuichi Nishiwaki 2014-06-21 12:06:28 +09:00
parent 17520df61c
commit 4c38383d9b
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ When you use dynamic memory allocation inside C APIs, you must be caseful about
}
void
pic_init_my_data(pic_state *pic)
pic_init_foo(pic_state *pic)
{
pic_defun(pic, "create-my-data", pic_create_foo); // (create-foo)
pic_defun(pic, "create-foo", pic_create_foo); // (create-foo)
}