diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-08-16 01:31:32 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-08-16 01:31:32 +0200 |
commit | d6a7203042a568064ae76cdc2d441e5a399a33c7 (patch) | |
tree | 08bae83e35cac672d2b6a7015a1d58f71deefb1e | |
parent | 8d718686f7dc5ce765544dcb8c7d2d5bc40b9d01 (diff) | |
download | busybox-w32-d6a7203042a568064ae76cdc2d441e5a399a33c7.tar.gz busybox-w32-d6a7203042a568064ae76cdc2d441e5a399a33c7.tar.bz2 busybox-w32-d6a7203042a568064ae76cdc2d441e5a399a33c7.zip |
vi: fix compile-time error if !ENABLE_FEATURE_VI_SETOPTS
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | editors/vi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/vi.c b/editors/vi.c index 23a44d597..3e1bd0820 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -320,6 +320,7 @@ struct globals { | |||
320 | #define autoindent (0) | 320 | #define autoindent (0) |
321 | #define expandtab (0) | 321 | #define expandtab (0) |
322 | #define err_method (0) | 322 | #define err_method (0) |
323 | #define ignorecase (0) | ||
323 | #endif | 324 | #endif |
324 | 325 | ||
325 | #if ENABLE_FEATURE_VI_READONLY | 326 | #if ENABLE_FEATURE_VI_READONLY |