diff options
author | Akim Demaille <akim.demaille@gmail.com> | 2020-05-23 15:29:42 +0200 |
---|---|---|
committer | Akim Demaille <akim.demaille@gmail.com> | 2020-05-23 15:40:48 +0200 |
commit | 3ff248ebfe2423c1c0c223c33445e27328a0c9b4 (patch) | |
tree | 2e10d90a3757bb063331b49f9ecdee121a82985c /data | |
parent | 4e1a5aae96c9e7285c28c89e0145a7b538ffc71b (diff) | |
download | bison-3ff248ebfe2423c1c0c223c33445e27328a0c9b4.tar.gz |
m4: simplify useless quotation
* data/skeletons/bison.m4: The result of b4_symbol is "quoted"
already, no need for m4_expand.
Diffstat (limited to 'data')
-rw-r--r-- | data/skeletons/bison.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/skeletons/bison.m4 b/data/skeletons/bison.m4 index 1130b6d5..359d6923 100644 --- a/data/skeletons/bison.m4 +++ b/data/skeletons/bison.m4 @@ -587,8 +587,8 @@ m4_define([b4_any_token_visible_if], m4_define([b4_token_format], [b4_token_visible_if([$2], [m4_format([[$1]], - m4_expand(b4_symbol([$2], [id])), - m4_expand(b4_symbol([$2], b4_api_token_raw_if([[number]], [[code]]))))])]) + b4_symbol([$2], [id]), + b4_symbol([$2], b4_api_token_raw_if([[number]], [[code]])))])]) # b4_last_enum_token |