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:
Pedro F. Giffuni 2016-12-02 01:52:32 +00:00
parent f171328eaa
commit cba6bdf9bc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309382

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;