1
0
forked from aniani/vim

patch 9.0.1403: unused variables and functions

Problem:    Unused variables and functions.
Solution:   Delete items and adjust #ifdefs. (Dominique Pellé, closes #12145)
This commit is contained in:
Dominique Pelle
2023-03-12 21:20:59 +00:00
committed by Bram Moolenaar
parent d13dd30240
commit e764d1b421
13 changed files with 38 additions and 26 deletions

View File

@@ -5245,15 +5245,6 @@ set_option_flag(int opt_idx, long_u flag)
options[opt_idx].flags |= flag;
}
/*
* Clear a flag for the option at 'opt_idx'.
*/
void
clear_option_flag(int opt_idx, long_u flag)
{
options[opt_idx].flags &= ~flag;
}
/*
* Returns TRUE if the option at 'opt_idx' is a global option
*/