From d48e338f99e57cf019f400f730bcf62125da1b9c Mon Sep 17 00:00:00 2001 From: Ineiev Date: Tue, 29 Apr 2025 10:45:21 +0000 Subject: [PATCH] * c.texi (Pragma Basics): Fix pragma names. --- c.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c.texi b/c.texi index 0b49180..98e4e25 100644 --- a/c.texi +++ b/c.texi @@ -12712,12 +12712,12 @@ Equivalent to @code{#warning}. Its advantage is that the Equivalent to @code{#error}. Its advantage is that the @code{_Pragma} form can be included in a macro definition. -@item #pragma GCC message @var{message} -@itemx _Pragma ("GCC message @var{message}") +@item #pragma message @var{message} +@itemx _Pragma ("message @var{message}") Similar to @samp{GCC warning} and @samp{GCC error}, this simply prints an informational message, and could be used to include additional warning or error text without triggering more warnings or errors. (Note that -unlike @samp{warning} and @samp{error}, @samp{message} does not include +unlike @samp{GCC warning} and @samp{GCC error}, @samp{message} does not include @samp{GCC} as part of the pragma.) @end table