aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-31 23:06:18 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-31 23:06:18 +0000
commit342b0ab945bb335ead1d23a3bddf9d77fc944f56 (patch)
tree433c46bcb9a4ac2023a5044f757e522d87b9b0f5
parent9a7d38fe2448617df98ecaea7dbe6f3131088586 (diff)
downloadbusybox-w32-342b0ab945bb335ead1d23a3bddf9d77fc944f56.tar.gz
busybox-w32-342b0ab945bb335ead1d23a3bddf9d77fc944f56.tar.bz2
busybox-w32-342b0ab945bb335ead1d23a3bddf9d77fc944f56.zip
less: forgot trivial #if ENABLE_xxxx
-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 )