From af5acf3566d5732871b1dcb007aee4f474369d93 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Mon, 30 May 2022 01:16:47 +0900 Subject: [PATCH] parse.y: fix wrong indent [ci skip]. --- mrbgems/mruby-compiler/core/parse.y | 2 +- mrbgems/mruby-compiler/core/y.tab.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index 3b9c45f5a..12d57445e 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -4685,7 +4685,7 @@ read_escape(parser_state *p) c = read_escape_unicode(p, 4); if (c < 0) return 0; } - return -c; + return -c; case 'b':/* backspace */ return '\010'; diff --git a/mrbgems/mruby-compiler/core/y.tab.c b/mrbgems/mruby-compiler/core/y.tab.c index 808c64137..d12e98a4f 100644 --- a/mrbgems/mruby-compiler/core/y.tab.c +++ b/mrbgems/mruby-compiler/core/y.tab.c @@ -10916,7 +10916,7 @@ read_escape(parser_state *p) c = read_escape_unicode(p, 4); if (c < 0) return 0; } - return -c; + return -c; case 'b':/* backspace */ return '\010';