branch: externals/vc-jj
commit 7d72dc47d39736942731d61965aa5f6a635a57b7
Author: Rob <bruno.rob...@gmail.com>
Commit: Rob <bruno.rob...@gmail.com>

    Fix vc-annotate author parsing
---
 vc-jj.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vc-jj.el b/vc-jj.el
index de4783d5b5..15f1aa221d 100644
--- a/vc-jj.el
+++ b/vc-jj.el
@@ -392,7 +392,7 @@ For jj, modify `.gitignore' and call `jj untrack' or `jj 
track'."
   (rx bol
       (group (+ (any "a-z")))           ; change id
       " "
-      (group (+ (any alnum)))           ; author username
+      (group (+? anychar))              ; author username
       (+ " ")
       (group                            ; iso 8601-ish datetime
        (= 4 digit) "-" (= 2 digit) "-" (= 2 digit) " "

Reply via email to