indent(1): Do not define opchar unless it will be used.

"opchar" is only used once depending on "undef" macro being defined.
Conditionalize it in the same way.

Submitted by:	Piotr Sephaniak
This commit is contained in:
pfg 2016-12-02 01:52:32 +00:00
parent 07854ccbd9
commit bc31a0b8fc

View File

@ -57,7 +57,9 @@ __FBSDID("$FreeBSD$");
#include "indent.h"
#define alphanum 1
#ifdef undef
#define opchar 3
#endif
struct templ {
const char *rwd;