aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-31 23:06:18 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-31 23:06:18 +0000
commit6933de2edd6391473a6c245be7c4a3b6bb326355 (patch)
tree433c46bcb9a4ac2023a5044f757e522d87b9b0f5 /miscutils
parent4ab25db9aad167a3a3be5a3764d63d44d14bfdac (diff)
downloadbusybox-w32-6933de2edd6391473a6c245be7c4a3b6bb326355.tar.gz
busybox-w32-6933de2edd6391473a6c245be7c4a3b6bb326355.tar.bz2
busybox-w32-6933de2edd6391473a6c245be7c4a3b6bb326355.zip
less: forgot trivial #if ENABLE_xxxx
git-svn-id: svn://busybox.net/trunk/busybox@18718 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/less.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/miscutils/less.c b/miscutils/less.c
index d5301bf58..7be634fd0 100644
--- a/miscutils/less.c
+++ b/miscutils/less.c
@@ -140,11 +140,13 @@ struct globals {
140#define files (G.files ) 140#define files (G.files )
141#define num_marks (G.num_marks ) 141#define num_marks (G.num_marks )
142#define mark_lines (G.mark_lines ) 142#define mark_lines (G.mark_lines )
143#if ENABLE_FEATURE_LESS_REGEXP
143#define match_lines (G.match_lines ) 144#define match_lines (G.match_lines )
144#define match_pos (G.match_pos ) 145#define match_pos (G.match_pos )
145#define num_matches (G.num_matches ) 146#define num_matches (G.num_matches )
146#define pattern (G.pattern ) 147#define pattern (G.pattern )
147#define pattern_valid (G.pattern_valid ) 148#define pattern_valid (G.pattern_valid )
149#endif
148#define terminated (G.terminated ) 150#define terminated (G.terminated )
149#define term_orig (G.term_orig ) 151#define term_orig (G.term_orig )
150#define term_less (G.term_less ) 152#define term_less (G.term_less )