From 78800f21046ababfc7f650984762c69801441dba Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Mon, 31 May 2010 22:18:48 +0100 Subject: [PATCH] Fixed the action regexp which was too greedy. --- rebase-mode.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rebase-mode.el b/rebase-mode.el index 76c8053c..233a3952 100644 --- a/rebase-mode.el +++ b/rebase-mode.el @@ -36,8 +36,7 @@ (group (** 7 40 (char "0-9" "a-f" "A-F"))) ;sha1 (char space) - (* anything) ; msg - line-end) + (* not-newline)) "Regexp that matches an action line in a rebase buffer.") (defvar rebase-mode-font-lock-keywords