diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-12-07 22:38:08 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-12-07 22:38:08 +0000 |
commit | 761a96d5299236ce5864ba6dfc79432876fdea7f (patch) | |
tree | 7b178bb2f3bbe060b8340a74371209069c577aef /gcc/cpp.texi | |
parent | 331828c027302ff4e4d4f7ecb52aac9e2c7ad36f (diff) | |
download | gcc-761a96d5299236ce5864ba6dfc79432876fdea7f.tar.gz |
Formerly cpp.texi.~26~
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13226 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpp.texi')
-rw-r--r-- | gcc/cpp.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpp.texi b/gcc/cpp.texi index 14884eee44a..675da443775 100644 --- a/gcc/cpp.texi +++ b/gcc/cpp.texi @@ -2330,7 +2330,7 @@ when you run @code{gcc} or @code{cpp}. @xref{Invocation}. @findex #error The directive @samp{#error} causes the preprocessor to report a fatal error. The rest of the line that follows @samp{#error} is used as the -error message. +error message. The line must consist of complete tokens. You would use @samp{#error} inside of a conditional that detects a combination of parameters which you know the program does not properly @@ -2340,7 +2340,7 @@ properly on a Vax, you might write @smallexample @group #ifdef __vax__ -#error Won't work on Vaxen. See comments at get_last_object. +#error "Won't work on Vaxen. See comments at get_last_object." #endif @end group @end smallexample |