0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.4928: various white space and cosmetic mistakes

Problem:    Various white space and cosmetic mistakes.
Solution:   Change spaces to tabs, improve comments.
This commit is contained in:
Bram Moolenaar
2022-05-09 20:09:23 +01:00
parent 921bde8880
commit 6ed545e797
49 changed files with 164 additions and 159 deletions

View File

@@ -452,8 +452,8 @@ crypt_create(
if (cryptmethods[method_nr].init_fn(
state, key, salt, salt_len, seed, seed_len) == FAIL)
{
vim_free(state);
return NULL;
vim_free(state);
return NULL;
}
return state;
}
@@ -692,7 +692,7 @@ crypt_encode_inplace(
cryptstate_T *state,
char_u *buf,
size_t len,
int last)
int last)
{
cryptmethods[state->method_nr].encode_inplace_fn(state, buf, len,
buf, last);