diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
commit | 84a05acc8c341c2be383198496764992ae971a46 (patch) | |
tree | 061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/if_mzsch.c | |
parent | 84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff) | |
download | vim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz |
updated for version 7.3.925v7.3.925
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/if_mzsch.c')
-rw-r--r-- | src/if_mzsch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/if_mzsch.c b/src/if_mzsch.c index 238446409..8dd213431 100644 --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -3053,7 +3053,7 @@ mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth, status = FAIL; else { - /* add the value in advance to allow handling of self-referencial + /* add the value in advance to allow handling of self-referential * data structures */ typval_T *visited_tv = (typval_T *)alloc(sizeof(typval_T)); copy_tv(tv, visited_tv); @@ -3088,7 +3088,7 @@ mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth, if (status == FAIL) break; } - /* impoper list not terminated with null + /* improper list not terminated with null * need to handle the last element */ if (status == OK && !SCHEME_NULLP(curr)) { @@ -3136,7 +3136,7 @@ mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth, { if (((Scheme_Hash_Table *) obj)->vals[i] != NULL) { - /* generate item for `diplay'ed Scheme key */ + /* generate item for `display'ed Scheme key */ dictitem_T *item = dictitem_alloc((char_u *)string_to_line( ((Scheme_Hash_Table *) obj)->keys[i])); /* convert Scheme val to Vim and add it to the dict */ |