summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2016-12-01 17:11:58 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2016-12-01 17:13:37 +0000
commit8891f5a33d2617b7c7bb4f37c4340a1dd159529e (patch)
tree60aa5e9556ff8c10319599c25f3f94fa843b9393
parent1ba59c4147e3b82023026bc6784105ccd73b7bd3 (diff)
downloadzsh-8891f5a33d2617b7c7bb4f37c4340a1dd159529e.tar.gz
zsh-8891f5a33d2617b7c7bb4f37c4340a1dd159529e.tar.xz
zsh-8891f5a33d2617b7c7bb4f37c4340a1dd159529e.zip
unposted: vcs_info: Break out VCS_INFO_quilt-patch2subject into VCS_INFO_patch2subject
... so other places can use it; compare 40030 in the 39990 thread.
-rw-r--r--ChangeLog7
-rw-r--r--Functions/VCS_Info/VCS_INFO_patch2subject50
-rw-r--r--Functions/VCS_Info/VCS_INFO_quilt49
-rw-r--r--Functions/VCS_Info/vcs_info1
4 files changed, 59 insertions, 48 deletions
diff --git a/ChangeLog b/ChangeLog
index fc49df000..98baf3ed1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-12-01  Daniel Shahaf  <d.s@daniel.shahaf.name>
+
+	* unposted: Functions/VCS_Info/VCS_INFO_patch2subject,
+	Functions/VCS_Info/VCS_INFO_quilt, Functions/VCS_Info/vcs_info:
+	vcs_info: Break out VCS_INFO_quilt-patch2subject into
+	VCS_INFO_patch2subject
+
 2016-12-01  Mikael Magnusson  <mikachu@gmail.com>
 
 	* 40024: Completion/Unix/Type/_path_files: Update _path_files
diff --git a/Functions/VCS_Info/VCS_INFO_patch2subject b/Functions/VCS_Info/VCS_INFO_patch2subject
new file mode 100644
index 000000000..583467bc8
--- /dev/null
+++ b/Functions/VCS_Info/VCS_INFO_patch2subject
@@ -0,0 +1,50 @@
+# This function takes as an argument a filename of a patch and sets $REPLY to
+# a single-line "subject", or unsets it if no subject could be extracted.
+{
+    integer i
+    integer -r LIMIT=10
+    local -a lines
+    local needle
+    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
+                lines[$i]=()
+                break
+            fi
+        done < "$1"
+        
+        if needle=${lines[(i)Subject:*]}; (( needle <= $#lines )); then
+            # "Subject: foo" line, plus rfc822 whitespace unfolding.
+            #
+            # Example: 'git format-patch' patches.
+            REPLY=${lines[needle]}
+            REPLY=${REPLY#*: }
+            REPLY=${REPLY#\[PATCH\] }
+            while [[ ${${lines[++needle]}[1]} == ' ' ]]; do
+                REPLY+=${lines[needle]}
+            done
+        elif needle=${lines[(r)Description:*]}; [[ -n $needle ]]; then
+            # "Description: foo" line.
+            #
+            # Example: DEP-3 patches.
+            REPLY=${needle#*: }
+        elif [[ ${lines[1]} == '# HG changeset patch' ]] && { needle=${${lines:#([#]*)}[1]}; [[ -n $needle ]] }; then
+            # Mercurial patch
+            REPLY=$needle
+        elif (( ${+lines[1]} )); then
+            # The first line of the file is not part of the diff.
+            REPLY=${lines[1]}
+        else
+            # The patch has no subject.
+            unset REPLY
+            return 0
+        fi
+    else
+        # The patch cannot be examined, or invalid arguments.
+        unset REPLY
+        return 1
+    fi
+}
diff --git a/Functions/VCS_Info/VCS_INFO_quilt b/Functions/VCS_Info/VCS_INFO_quilt
index 6adf0a358..4c61506cd 100644
--- a/Functions/VCS_Info/VCS_INFO_quilt
+++ b/Functions/VCS_Info/VCS_INFO_quilt
@@ -80,55 +80,8 @@ function VCS_INFO_quilt-dirfind() {
     return ${ret}
 }
 
-# This function takes as an argument a filename of a patch and sets $REPLY to
-# a single-line "subject", or unsets it if no subject could be extracted.
 function VCS_INFO_quilt-patch2subject() {
-    integer i
-    integer -r LIMIT=10
-    local -a lines
-    local needle
-    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
-                lines[$i]=()
-                break
-            fi
-        done < "$1"
-        
-        if needle=${lines[(i)Subject:*]}; (( needle <= $#lines )); then
-            # "Subject: foo" line, plus rfc822 whitespace unfolding.
-            #
-            # Example: 'git format-patch' patches.
-            REPLY=${lines[needle]}
-            REPLY=${REPLY#*: }
-            REPLY=${REPLY#\[PATCH\] }
-            while [[ ${${lines[++needle]}[1]} == ' ' ]]; do
-                REPLY+=${lines[needle]}
-            done
-        elif needle=${lines[(r)Description:*]}; [[ -n $needle ]]; then
-            # "Description: foo" line.
-            #
-            # Example: DEP-3 patches.
-            REPLY=${needle#*: }
-        elif [[ ${lines[1]} == '# HG changeset patch' ]] && { needle=${${lines:#([#]*)}[1]}; [[ -n $needle ]] }; then
-            # Mercurial patch
-            REPLY=$needle
-        elif (( ${+lines[1]} )); then
-            # The first line of the file is not part of the diff.
-            REPLY=${lines[1]}
-        else
-            # The patch has no subject.
-            unset REPLY
-            return 0
-        fi
-    else
-        # The patch cannot be examined, or invalid arguments.
-        unset REPLY
-        return 1
-    fi
+    VCS_INFO_patch2subject "$@"
 }
 
 function VCS_INFO_quilt() {
diff --git a/Functions/VCS_Info/vcs_info b/Functions/VCS_Info/vcs_info
index c0c1182e6..24ae98e52 100644
--- a/Functions/VCS_Info/vcs_info
+++ b/Functions/VCS_Info/vcs_info
@@ -23,6 +23,7 @@ static_functions=(
     VCS_INFO_hook
     VCS_INFO_maxexports
     VCS_INFO_nvcsformats
+    VCS_INFO_patch2subject
     VCS_INFO_quilt
     VCS_INFO_realpath
     VCS_INFO_reposub