On Sun, 2 Aug 2020 at 15:49, Philip R Brenan via Gcc <gcc@gcc.gnu.org> wrote: > > Hi *GCC*: > > On page: > > https://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html#Variadic-Macros > > you say: > > #define eprintf(args…) fprintf (stderr, args) > > but do you in fact mean: > > #define eprintf(args...) fprintf (stderr, args) > > The first variant produces: > > error: expected ',' or ')', found "…" > > the second variant works well using GCC10.2 on Kubuntu 18.04.
Yes, the texinfo source uses @dots which gets turned into … in the HTML, which isn't necessarily displayed as three separate dots in the browser. I don't know why @dots is used rather than ...