From a446b943f7a5b38f67cca69a513d873bc8335552 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Fri, 30 Aug 2013 14:50:43 -0700 Subject: [PATCH] toke.c: Reorder checks around deprecate_escaped_meta ckWARN_d involves a function call, so put faster checks first. --- toke.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toke.c b/toke.c index 2764709..bf9d160 100644 --- a/toke.c +++ b/toke.c @@ -10452,8 +10452,8 @@ S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims, int re_reparse, * happen for <>, as they aren't metas. */ if (deprecate_escaped_meta && (PL_multi_open == PL_multi_close - || ! ckWARN_d(WARN_DEPRECATED) - || PL_multi_open == '<')) + || PL_multi_open == '<' + || ! ckWARN_d(WARN_DEPRECATED))) { deprecate_escaped_meta = FALSE; } -- 2.7.4