diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-10-09 20:57:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-10-09 20:57:26 +0000 |
commit | 7e4e8c89c9cf9e2712eede00d12c71677e17b929 (patch) | |
tree | ccff83caea5f77bb9d96eedef8335d420b3e3fdf /regcomp.c | |
parent | 1c2b4d67977aeb5bb1057ed40fce97cdd133e14a (diff) | |
download | perl-7e4e8c89c9cf9e2712eede00d12c71677e17b929.tar.gz |
Put all pre-processor #s on the first column (some compilers are picky)
[perl #24167] `#' comment signs not at the very beginning of a line
p4raw-id: //depot/perl@21433
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -96,12 +96,12 @@ #endif /* op */ #ifdef MSDOS -# if defined(BUGGY_MSC6) +# if defined(BUGGY_MSC6) /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */ - # pragma optimize("a",off) +# pragma optimize("a",off) /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/ - # pragma optimize("w",on ) -# endif /* BUGGY_MSC6 */ +# pragma optimize("w",on ) +# endif /* BUGGY_MSC6 */ #endif /* MSDOS */ #ifndef STATIC |