Leo wrote: > >> In file included from term.c:418: >> buffer.h:403: error: redefinition of ‘struct buffer_text’ >> buffer.h:461: error: redefinition of ‘struct buffer’ >>
buffer.h is included at the top of the file, so doesn't need to be included again, but shouldn't it be protected against double inclusion by the following? #ifndef EMACS_BUFFER_H #define EMACS_BUFFER_H ... #endif /* EMACS_BUFFER_H */ _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
