aboutsummaryrefslogtreecommitdiff
path: root/contrib/less/regexp.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/less/regexp.h')
-rw-r--r--contrib/less/regexp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/less/regexp.h b/contrib/less/regexp.h
index bcef6d1ebc77..283ff2aad6b7 100644
--- a/contrib/less/regexp.h
+++ b/contrib/less/regexp.h
@@ -10,13 +10,13 @@
#define NSUBEXP 10
typedef struct regexp {
- char *startp[NSUBEXP];
- char *endp[NSUBEXP];
- char regstart; /* Internal use only. */
- char reganch; /* Internal use only. */
- char *regmust; /* Internal use only. */
- int regmlen; /* Internal use only. */
- char program[1]; /* Unwarranted chumminess with compiler. */
+ char *startp[NSUBEXP];
+ char *endp[NSUBEXP];
+ char regstart; /* Internal use only. */
+ char reganch; /* Internal use only. */
+ char *regmust; /* Internal use only. */
+ int regmlen; /* Internal use only. */
+ char program[1]; /* Unwarranted chumminess with compiler. */
} regexp;
#if defined(__STDC__) || defined(__cplusplus)