diff options
Diffstat (limited to 'src/expand.c')
-rw-r--r-- | src/expand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expand.c b/src/expand.c index 9cb8eab..5c31400 100644 --- a/src/expand.c +++ b/src/expand.c @@ -523,7 +523,7 @@ expari(int flag) expdest = p; - if (flag & QUOTES_ESC) + if (likely(flag & QUOTES_ESC)) rmescapes(p + 1); result = arith(p + 1); @@ -531,7 +531,7 @@ expari(int flag) len = cvtnum(result); - if (!(flag & EXP_QUOTED)) + if (likely(!(flag & EXP_QUOTED))) recordregion(begoff, begoff + len, 0); } |