DORMANTno replies

[PATCH 1/2] rebase -i: Use : in expr command instead of match.

From: Brian Gernhardt <hidden>
Date: 2016-06-15 22:44:32
Subsystem: the rest · Maintainer: Linus Torvalds

`expr match $str $pattern` failed on OS X, and we already use
`expr $str : $pattern` in several other commands.

Signed-off-by: Brian Gernhardt <redacted>
---

 git-rebase--interactive.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index 303b754..2a01182 100755
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -192,7 +192,7 @@ peek_next_command () {
 }
 
 mark_to_ref () {
-	if expr match "$1" "^:[0-9][0-9]*$" >/dev/null
+	if expr "$1" : "^:[0-9][0-9]*$" >/dev/null
 	then
 		echo "$mark_prefix$(printf %d ${1#:})"
 	else
-- 
1.5.5.1.174.g8f57349
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help