diff options
author | Mattias Andrée <maandree@kth.se> | 2021-08-09 21:56:27 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-08-09 21:56:27 +0200 |
commit | 546d1c2149e9c8a050ccf8c10718e69bce09ec6c (patch) | |
tree | d74a1634b8265b1a9671f9e4b5796faae1e4a9aa | |
parent | Standardise @(( )), add -R option, and fix critical bug (diff) | |
download | gpp-546d1c2149e9c8a050ccf8c10718e69bce09ec6c.tar.gz gpp-546d1c2149e9c8a050ccf8c10718e69bce09ec6c.tar.bz2 gpp-546d1c2149e9c8a050ccf8c10718e69bce09ec6c.tar.xz |
Fix typo2.1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | gpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -340,7 +340,7 @@ after_unshebang: append(&out_data, &out_len, &out_size, "%c\"'", c); continue; } - } else if (c == '(' || c == '}') { + } else if (c == '(' || c == '{') { brackets += 1; } else if (c == '\\') { esc = 1; |