diff options
author | Michael Forney <mforney@mforney.org> | 2020-03-22 13:12:35 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2020-03-22 13:21:21 -0700 |
commit | caa4368d89116077fe94191e6e3ee67b6a8b092b (patch) | |
tree | 7e5af80ed6d83f6be1fac08f372c0ac43dce4466 /test | |
parent | ed8f52d4a65d8a06aa01a247eab39e65ec5334e1 (diff) | |
download | cproc-caa4368d89116077fe94191e6e3ee67b6a8b092b.tar.xz |
pp: Don't add leading space for first stringized token
Diffstat (limited to 'test')
-rw-r--r-- | test/preprocess-macro-stringize-2.c | 1 | ||||
-rw-r--r-- | test/preprocess-macro-stringize-2.pp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/preprocess-macro-stringize-2.c b/test/preprocess-macro-stringize-2.c index 81862b6..5631883 100644 --- a/test/preprocess-macro-stringize-2.c +++ b/test/preprocess-macro-stringize-2.c @@ -3,3 +3,4 @@ str(@) str(12 x- 3 abc) str('"' "\\") +str( abc) diff --git a/test/preprocess-macro-stringize-2.pp b/test/preprocess-macro-stringize-2.pp index 1dad46c..975126d 100644 --- a/test/preprocess-macro-stringize-2.pp +++ b/test/preprocess-macro-stringize-2.pp @@ -1,3 +1,4 @@ "@" "12 x- 3 abc" "'\"' \"\\\\\"" +"abc" |