summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-04-03 08:29:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-04-03 08:29:50 +0000
commite8b536c7e79e3c24ad69671fbce77ffe6035e51e (patch)
tree0cd5ff9ad0548c338a98e237512aeb4bfca67978 /tool
parentf6877949647bd38d225ea11723874636810c96d5 (diff)
Fixed unmatched quotes and brackets
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rw-r--r--tool/m4/_colorize_result_prepare.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/m4/_colorize_result_prepare.m4 b/tool/m4/_colorize_result_prepare.m4
index 1f33e04221..16a632e8fe 100644
--- a/tool/m4/_colorize_result_prepare.m4
+++ b/tool/m4/_colorize_result_prepare.m4
@@ -21,7 +21,7 @@ AC_DEFUN([_COLORIZE_RESULT_PREPARE], [
AS_REQUIRE_SHELL_FN([colorize_result],
[AS_FUNCTION_DESCRIBE([colorize_result], [MSG], [Colorize result])],
[AS_CASE(["$[]1"],
- [yes], [AS_ECHO(["${msg_result_yes}$[]1${msg_reset}]")],
- [no], [AS_ECHO(["${msg_result_no}$[]1${msg_reset}]")],
- [AS_ECHO(["${msg_result_other}$[]1${msg_reset}]")])])
+ [yes], [AS_ECHO(["${msg_result_yes}$[]1${msg_reset}"])],
+ [no], [AS_ECHO(["${msg_result_no}$[]1${msg_reset}"])],
+ [AS_ECHO(["${msg_result_other}$[]1${msg_reset}"])])])
])dnl