Bug#205050: marked as done (cpp-3.3: does not stringify macros)

2003-08-12 Thread Debian Bug Tracking System
Your message dated 12 Aug 2003 10:30:21 +0200 with message-id <[EMAIL PROTECTED]> and subject line Bug#205050: cpp-3.3: does not stringify macros has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case

Bug#205050:

2003-08-12 Thread Chris Collins
This may actually be desired effect since stringification works within macros, but not in the files raw. C. -- Chris Collins <[EMAIL PROTECTED]> Advanced Networks Research Group

Bug#205050: cpp-3.3: does not stringify macros

2003-08-12 Thread Chris Collins
Package: cpp-3.3 Version: 1:3.3.1-0pre0 Severity: important Given the following sample: ---BEGIN--- #define FOO 42 "foo" #FOO "blah" ---END--- A correct cpp should output the last line as: "foo" "23" "blah" However, GNU cpp is producing: "blah" #23 "foo" Refer to the gcc cpp documtation: