diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-14 14:51:39 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-14 14:51:39 -0400 |
commit | c37faef75de9b4de70e6394e814c7c50b4fca6d9 (patch) | |
tree | 9bc1dc9768c268eada8a96b1833ce79dfa75f09f | |
parent | 3af1ae2a76b789f89793d64b8d6eff7f9c24ca75 (diff) |
turn off indent in generated files
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
-rw-r--r-- | util/makestrs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/makestrs.c b/util/makestrs.c index 7f752bd..4d5c0a6 100644 --- a/util/makestrs.c +++ b/util/makestrs.c @@ -503,6 +503,7 @@ WriteSource(char *tagline, int abi) else tmpl = NULL; + (void) printf("/* *%s* */\n", "INDENT-OFF"); (void) printf("%s\n%s\n/* %s ABI version -- Do not edit */\n", "/* $Xorg: makestrs.c,v 1.6 2001/02/09 02:03:17 xorgcvs Exp $ */", "/* This file is automatically generated. */", @@ -517,6 +518,7 @@ WriteSource(char *tagline, int abi) CopyTmplEpilog(tmpl, stdout); fclose(tmpl); } + (void) printf("/* *%s* */\n", "INDENT-ON"); } static void |