rename 'dictionary' 'make-dictionary'

This commit is contained in:
Yuichi Nishiwaki 2014-07-13 12:07:56 +09:00
parent b0474aaec2
commit 88593b1f9d
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ void
pic_init_dict(pic_state *pic)
{
pic_deflibrary ("(picrin dictionary)") {
pic_defun(pic, "dictionary", pic_dict_dict);
pic_defun(pic, "make-dictionary", pic_dict_dict);
pic_defun(pic, "dictionary?", pic_dict_dict_p);
pic_defun(pic, "dictionary-ref", pic_dict_dict_ref);
pic_defun(pic, "dictionary-set!", pic_dict_dict_set);