mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
vim-patch:7.4.1707
Problem: Cannot use empty dictionary key, even though it can be useful.
Solution: Allow using an empty dictionary key.
0921ecff1c
This commit is contained in:
@@ -368,8 +368,7 @@ hash_T hash_hash(char_u *key)
|
||||
hash_T hash = *key;
|
||||
|
||||
if (hash == 0) {
|
||||
// Empty keys are not allowed, but we don't want to crash if we get one.
|
||||
return (hash_T) 0;
|
||||
return (hash_T)0;
|
||||
}
|
||||
|
||||
// A simplistic algorithm that appears to do very well.
|
||||
|
Reference in New Issue
Block a user