mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
vim-patch:8.0.0448: some macros are lower case (#7936)
Problem: Some macros are in lower case, which can be confusing.
Solution: Make a few lower case macros upper case.
b5aedf3e22
ref #6297
This commit is contained in:

committed by
Justin M. Keyes

parent
2a1a624878
commit
8728a5d50b
@@ -2268,12 +2268,14 @@ static void u_undoredo(int undo)
|
||||
|
||||
curhead->uh_entry = newlist;
|
||||
curhead->uh_flags = new_flags;
|
||||
if ((old_flags & UH_EMPTYBUF) && bufempty())
|
||||
if ((old_flags & UH_EMPTYBUF) && BUFEMPTY()) {
|
||||
curbuf->b_ml.ml_flags |= ML_EMPTY;
|
||||
if (old_flags & UH_CHANGED)
|
||||
}
|
||||
if (old_flags & UH_CHANGED) {
|
||||
changed();
|
||||
else
|
||||
} else {
|
||||
unchanged(curbuf, FALSE);
|
||||
}
|
||||
|
||||
/*
|
||||
* restore marks from before undo/redo
|
||||
|
Reference in New Issue
Block a user