diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-11-15 18:35:45 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-11-15 18:35:45 +0200 |
commit | 8b863f8852067b0638e09dc7c82355b96381dc12 (patch) | |
tree | eeedacfa918ae53bd52a69fb2c7a47ce1bfbc3e5 /interpret.h | |
parent | 05de499531bc8fece2625b27a728bd24412ab41a (diff) | |
download | egawk-8b863f8852067b0638e09dc7c82355b96381dc12.tar.gz egawk-8b863f8852067b0638e09dc7c82355b96381dc12.tar.bz2 egawk-8b863f8852067b0638e09dc7c82355b96381dc12.zip |
Remove MBS_SUPPORT ifdefs.
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/interpret.h b/interpret.h index 593f11a6..83ccbfc5 100644 --- a/interpret.h +++ b/interpret.h @@ -711,7 +711,6 @@ mod: t1->stptr[nlen] = '\0'; t1->flags &= ~(NUMCUR|NUMBER|NUMINT); -#if MBS_SUPPORT if ((t1->flags & WSTRCUR) != 0 && (t2->flags & WSTRCUR) != 0) { size_t wlen = t1->wstlen + t2->wstlen; @@ -723,7 +722,6 @@ mod: t1->flags |= WSTRCUR; } else free_wstr(*lhs); -#endif } else { size_t nlen = t1->stlen + t2->stlen; char *p; |