details: https://hg.nginx.org/njs/rev/109697757094 branches: changeset: 816:109697757094 user: hongzhidao <hongzhi...@gmail.com> date: Tue Mar 05 08:32:54 2019 +0800 description: Style.
diffstat: njs/njs_lexer.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diffs (21 lines): diff -r 195158f4a6a7 -r 109697757094 njs/njs_lexer.c --- a/njs/njs_lexer.c Thu Feb 28 20:34:47 2019 +0300 +++ b/njs/njs_lexer.c Tue Mar 05 08:32:54 2019 +0800 @@ -244,7 +244,7 @@ static const njs_lexer_multi_t njs_less }; -static const njs_lexer_multi_t njs_less_equal_token[] = { +static const njs_lexer_multi_t njs_strict_equal_token[] = { { '=', NJS_TOKEN_STRICT_EQUAL, 0, NULL }, }; @@ -268,7 +268,7 @@ static const njs_lexer_multi_t njs_grea static const njs_lexer_multi_t njs_assignment_token[] = { - { '=', NJS_TOKEN_EQUAL, 1, njs_less_equal_token }, + { '=', NJS_TOKEN_EQUAL, 1, njs_strict_equal_token }, }; _______________________________________________ nginx-devel mailing list nginx-devel@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx-devel