diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-04-01 17:44:20 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-03 10:32:41 -0300 |
commit | 865e3280a8020d005ba462650f6479af815684a3 (patch) | |
tree | c23e5627750b688b7a67821fdbcf6924a39f9dcb /src/spell.c | |
parent | 955d6a29496d9f7902e95f4a2cc01fedd56e4a21 (diff) | |
download | rneovim-865e3280a8020d005ba462650f6479af815684a3.tar.gz rneovim-865e3280a8020d005ba462650f6479af815684a3.tar.bz2 rneovim-865e3280a8020d005ba462650f6479af815684a3.zip |
Fix seperator->separator, path_tail_with_separator->path_tail_with_sep.
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c index 1a09171491..57e2607f90 100644 --- a/src/spell.c +++ b/src/spell.c @@ -8507,7 +8507,7 @@ spell_add_word ( * file. We may need to create the "spell" directory first. We * already checked the runtime directory is writable in * init_spellfile(). */ - if (!dir_of_file_exists(fname) && (p = path_tail_with_seperator(fname)) != fname) { + if (!dir_of_file_exists(fname) && (p = path_tail_with_sep(fname)) != fname) { int c = *p; /* The directory doesn't exist. Try creating it and opening |