mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 01:38:16 +00:00
Rename FPC_* constants.
This commit is contained in:

committed by
Thiago de Arruda

parent
c454030478
commit
bfa4490aac
10
src/path.h
10
src/path.h
@@ -3,11 +3,11 @@
|
||||
|
||||
/// Return value for the comparison of two files. Also @see path_full_compare.
|
||||
typedef enum file_comparison {
|
||||
FPC_SAME = 1, ///< Both exist and are the same file.
|
||||
FPC_DIFF = 2, ///< Both exist and are different files.
|
||||
FPC_NOTX = 4, ///< Both don't exist.
|
||||
FPC_DIFFX = 6, ///< One of them doesn't exist.
|
||||
FPC_SAMEX = 7 ///< Both don't exist and file names are same.
|
||||
kEqualFiles = 1, ///< Both exist and are the same file.
|
||||
kDifferentFiles = 2, ///< Both exist and are different files.
|
||||
kBothFilesMissing = 4, ///< Both don't exist.
|
||||
kOneFileMissing = 6, ///< One of them doesn't exist.
|
||||
kEqualFileNames = 7 ///< Both don't exist and file names are same.
|
||||
} FileComparison;
|
||||
|
||||
/// Compare two file names.
|
||||
|
Reference in New Issue
Block a user