From 5763c818d507cbfb16047c9eb043b2b45ec416d4 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 15 Jan 2020 09:56:07 -0700 Subject: dquote.c: Change parameter name In two functions, future commits will generalize this parameter to be possibly a warning message instead of only an error message. Change its name to reflect the added meaning. --- proto.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'proto.h') diff --git a/proto.h b/proto.h index 0cf4442309..1f71619e19 100644 --- a/proto.h +++ b/proto.h @@ -5916,15 +5916,15 @@ PERL_CALLCONV char Perl_grok_bslash_c(pTHX_ const char source, const bool output __attribute__warn_unused_result__; #define PERL_ARGS_ASSERT_GROK_BSLASH_C -PERL_CALLCONV bool Perl_grok_bslash_o(pTHX_ char** s, const char* const send, UV* uv, const char** error_msg, const bool output_warning, const bool strict, const bool utf8) +PERL_CALLCONV bool Perl_grok_bslash_o(pTHX_ char** s, const char* const send, UV* uv, const char** message, const bool output_warning, const bool strict, const bool utf8) __attribute__warn_unused_result__; #define PERL_ARGS_ASSERT_GROK_BSLASH_O \ - assert(s); assert(send); assert(uv); assert(error_msg) + assert(s); assert(send); assert(uv); assert(message) -PERL_CALLCONV bool Perl_grok_bslash_x(pTHX_ char** s, const char* const send, UV* uv, const char** error_msg, const bool output_warning, const bool strict, const bool utf8) +PERL_CALLCONV bool Perl_grok_bslash_x(pTHX_ char** s, const char* const send, UV* uv, const char** message, const bool output_warning, const bool strict, const bool utf8) __attribute__warn_unused_result__; #define PERL_ARGS_ASSERT_GROK_BSLASH_X \ - assert(s); assert(send); assert(uv); assert(error_msg) + assert(s); assert(send); assert(uv); assert(message) #ifndef PERL_NO_INLINE_FUNCTIONS PERL_STATIC_INLINE I32 S_regcurly(const char *s) -- cgit v1.2.1