From 1da6c3e9da52f2084dd8e6cc848bbf8fb6586c4e Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 11 Aug 2016 16:08:15 -0400 Subject: [PATCH] fix + / - confusion. --- mpw-shell-token.rl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpw-shell-token.rl b/mpw-shell-token.rl index 31f447c..e5c739f 100644 --- a/mpw-shell-token.rl +++ b/mpw-shell-token.rl @@ -106,7 +106,7 @@ '-' when eval - %push_token => { tokens.emplace_back("+", '-'); }; + %push_token => { tokens.emplace_back("-", '-'); }; '!' when eval %push_token => { tokens.emplace_back("!", '!'); };