0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44: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

@@ -64,13 +64,13 @@ typedef struct {
// arg2 second argument from caller (if present)
// extra_arg1 any missing optional argument default value
// FP -> cur_func calling function
// current previous instruction pointer
// frame_ptr previous Frame Pointer
// var1 space for local variable
// var2 space for local variable
// .... fixed space for max. number of local variables
// temp temporary values
// .... flexible space for temporary values (can grow big)
// current previous instruction pointer
// frame_ptr previous Frame Pointer
// var1 space for local variable
// var2 space for local variable
// .... fixed space for max. number of local variables
// temp temporary values
// .... flexible space for temporary values (can grow big)
/*
* Execution context.
@@ -6162,7 +6162,7 @@ list_instructions(char *pfx, isn_T *instr, int instr_count, ufunc_T *ufunc)
iptr->isn_arg.string);
break;
case ISN_PUT:
if (iptr->isn_arg.put.put_lnum == LNUM_VARIABLE_RANGE_ABOVE)
if (iptr->isn_arg.put.put_lnum == LNUM_VARIABLE_RANGE_ABOVE)
smsg("%s%4d PUT %c above range",
pfx, current, iptr->isn_arg.put.put_regname);
else if (iptr->isn_arg.put.put_lnum == LNUM_VARIABLE_RANGE)