return the number of changed autocompletions */
| 3309 | |
| 3310 | /* return the number of changed autocompletions */ |
| 3311 | int |
| 3312 | count_autocompletions(void) |
| 3313 | { |
| 3314 | struct ext_func_tab *efp; |
| 3315 | int n = 0; |
| 3316 | |
| 3317 | for (efp = extcmdlist; efp->ef_txt; efp++) |
| 3318 | if ((efp->flags & AUTOCOMP_ADJ) != 0) |
| 3319 | n++; |
| 3320 | |
| 3321 | return n; |
| 3322 | } |
| 3323 | |
| 3324 | /* save&clear the mouse button actions, or restore the saved ones */ |
| 3325 | void |
no outgoing calls
no test coverage detected