summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2017-08-17 17:26:39 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2017-08-22 20:50:14 +0000
commitd6aa94997750a63712c8928b243b7c61fa73878b (patch)
tree1649358d0e3eb3626063fcef6ea91243d556ecbe
parent1472c85412630c6a29b38d8bead8ff0cfd4a7c7f (diff)
downloadzsh-d6aa94997750a63712c8928b243b7c61fa73878b.tar.gz
zsh-d6aa94997750a63712c8928b243b7c61fa73878b.tar.xz
zsh-d6aa94997750a63712c8928b243b7c61fa73878b.zip
41565: vcs_info patch2subject: Support `svn log -r N --diff` output.
-rw-r--r--ChangeLog5
-rw-r--r--Functions/VCS_Info/VCS_INFO_patch2subject11
2 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index bed77c065..94b435ace 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-08-22  Daniel Shahaf  <d.s@daniel.shahaf.name>
+
+	* 41565: Functions/VCS_Info/VCS_INFO_patch2subject: vcs_info
+	patch2subject: Support `svn log -r N --diff` output.
+
 2017-08-18  Oliver Kiddle  <opk@zsh.org>
 
 	* 41568: Completion/Unix/Command/_vmstat: handle vmstat options
diff --git a/Functions/VCS_Info/VCS_INFO_patch2subject b/Functions/VCS_Info/VCS_INFO_patch2subject
index e222e8382..a48c16b04 100644
--- a/Functions/VCS_Info/VCS_INFO_patch2subject
+++ b/Functions/VCS_Info/VCS_INFO_patch2subject
@@ -6,14 +6,18 @@
     integer -r LIMIT=10
     local -a lines
     local needle
+    readonly svn_log_pattern='^r[0-9]* [|] .*'
     if [[ -f "$1" ]]; then
         # Extract the first LIMIT lines, or up to the first empty line or the start of the unidiffs,
         # whichever comes first.
         while (( i++ < LIMIT )); do
             IFS= read -r "lines[$i]"
-            if [[ -z ${lines[$i]} ]] || [[ ${lines[$i]} == (#b)(---|Index:)* ]]; then
+            if [[ -z ${lines[$i]} ]] || [[ ${lines[$i]} == (#b)(---[^-]|Index:)* ]]; then
                 lines[$i]=()
-                break
+                # For 'svn log -r N --diff' output, read the first paragraph too.
+                if ! [[ $lines[i-1] =~ $svn_log_pattern ]]; then
+                    break
+                fi
             fi
         done < "$1"
         
@@ -51,6 +55,9 @@
               fi
             } < "$1"
             REPLY=$needle
+        elif [[ $lines[2] =~ $svn_log_pattern ]]; then
+            REPLY=$lines[4]
+            if (( ${+lines[5]} )); then REPLY+='...'; fi
         elif (( ${+lines[1]} )); then
             # The first line of the file is not part of the diff.
             REPLY=${lines[1]}