diff options
author | Tim Riker <tim@rikers.org> | 2002-04-26 07:41:22 +0000 |
---|---|---|
committer | Tim Riker <tim@rikers.org> | 2002-04-26 07:41:22 +0000 |
commit | 86c76a9c2a0160d5d975dc8179c597804581117a (patch) | |
tree | d465835659693db3c41045550a1db6e4447100c8 /editors/vi.c | |
parent | 0e28e1fa0551487dd28a42f1dbeb5bf717817175 (diff) | |
download | busybox-w32-86c76a9c2a0160d5d975dc8179c597804581117a.tar.gz busybox-w32-86c76a9c2a0160d5d975dc8179c597804581117a.tar.bz2 busybox-w32-86c76a9c2a0160d5d975dc8179c597804581117a.zip |
fix from kergoth
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vi.c b/editors/vi.c index a187c6dd0..a8f5203c8 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -19,7 +19,7 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | static const char vi_Version[] = | 21 | static const char vi_Version[] = |
22 | "$Id: vi.c,v 1.20 2001/12/20 23:12:47 kraai Exp $"; | 22 | "$Id: vi.c,v 1.21 2002/04/26 07:41:22 timr Exp $"; |
23 | 23 | ||
24 | /* | 24 | /* |
25 | * To compile for standalone use: | 25 | * To compile for standalone use: |
@@ -342,7 +342,7 @@ extern int vi_main(int argc, char **argv) | |||
342 | reg[i] = 0; | 342 | reg[i] = 0; |
343 | } // init the yank regs | 343 | } // init the yank regs |
344 | #endif /* CONFIG_FEATURE_VI_YANKMARK */ | 344 | #endif /* CONFIG_FEATURE_VI_YANKMARK */ |
345 | #ifdef CONFIG_FEATURE_VI_DOT_CMD | 345 | #if defined(CONFIG_FEATURE_VI_DOT_CMD) || defined(CONFIG_FEATURE_VI_YANKMARK) |
346 | modifying_cmds = (Byte *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[] | 346 | modifying_cmds = (Byte *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[] |
347 | #endif /* CONFIG_FEATURE_VI_DOT_CMD */ | 347 | #endif /* CONFIG_FEATURE_VI_DOT_CMD */ |
348 | 348 | ||