refactor: fixup! vim-patch:8.2.4881: "P" in Visual

7978660efb removed all uses of ff:

```diff
-yankreg_T *get_y_previous(void)
-{
-  return y_previous;
-}
-
-void set_y_previous(yankreg_T *yreg)
-{
-  y_previous = yreg;
-}
```
This commit is contained in:
Jan Edmund Lazo
2025-07-20 00:18:12 -04:00
parent 4765d4e059
commit 6a97eb332a

View File

@@ -134,16 +134,6 @@ static char opchars[][3] = {
{ Ctrl_X, NUL, OPF_CHANGE }, // OP_NR_SUB { Ctrl_X, NUL, OPF_CHANGE }, // OP_NR_SUB
}; };
yankreg_T *get_y_previous(void)
{
return y_previous;
}
void set_y_previous(yankreg_T *yreg)
{
y_previous = yreg;
}
/// Translate a command name into an operator type. /// Translate a command name into an operator type.
/// Must only be called with a valid operator name! /// Must only be called with a valid operator name!
int get_op_type(int char1, int char2) int get_op_type(int char1, int char2)