diff options
author | Denis Vlasenko | 2007-08-16 10:35:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-08-16 10:35:17 +0000 |
commit | 6a2f7f41cf7c544d6abce958f89c873b24f79b18 (patch) | |
tree | 6155700deea3477ee366aec5360909261ed53cd6 /editors/vi.c | |
parent | 033e592cbc96c150c67ac9be7df65e314be5c8f8 (diff) | |
download | busybox-6a2f7f41cf7c544d6abce958f89c873b24f79b18.zip busybox-6a2f7f41cf7c544d6abce958f89c873b24f79b18.tar.gz |
whitespace fixes, no code changes
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/vi.c b/editors/vi.c index 7456649..461cf98 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -136,9 +136,9 @@ static char last_forward_char; // last char searched for with 'f' #if ENABLE_FEATURE_VI_READONLY //static smallint vi_readonly, readonly; static smallint readonly_mode = 0; -#define SET_READONLY_FILE(flags) ((flags) |= 0x01) -#define SET_READONLY_MODE(flags) ((flags) |= 0x02) -#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe) +#define SET_READONLY_FILE(flags) ((flags) |= 0x01) +#define SET_READONLY_MODE(flags) ((flags) |= 0x02) +#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe) #else #define readonly_mode 0 #define SET_READONLY_FILE(flags) |