From bdb67d8227fd71edd4239cf5fbe666cca2b3eefb Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Wed, 16 Mar 2016 13:24:31 +0200 Subject: [PATCH] Remove a non-POSIX and unneeded -r `sed` flag --- rc/core/commenting.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/core/commenting.kak b/rc/core/commenting.kak index f6d0b068..9cf9b11b 100644 --- a/rc/core/commenting.kak +++ b/rc/core/commenting.kak @@ -8,7 +8,7 @@ def comment-selection -docstring "Comment/uncomment the current selection" %{ %sh{ function exec_proof { ## Replace the '<' sign that is interpreted differently in `exec` - printf %s "$@" | sed -r 's,<,,g' + printf %s "$@" | sed 's,<,,g' } readonly opening=$(exec_proof "${kak_opt_comment_selection_chars%%:*}")