On Tue, 20 Jun 2000, Ian Grant wrote:
> Despite claims that it's ANSI compliant, the native C compiler on Digital OSF1
> doesn't accept leading spaces on pre-processor directives, so all the nicely
> formatted
>
> #ifdef SOMETHING
> #define SOMETHING_ELSE
> .
> .
> .
>
> break the build.
Does the compiler accept
#ifdef SOMETHING
# define SOMETHING_ELSE
i. e. the spaces after the `#'? I assume it does, since we do have this
kind of preprocessor directives all around guile. If so, then we could at
least have _some_ amount of formatting.
Thanks,
Dirk