Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 2/4] _git: Fix insufficiently quoted pattern
- X-seq: zsh-workers 46140
- From: Miroslav Koškár <mk@xxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 2/4] _git: Fix insufficiently quoted pattern
- Date: Sat, 27 Jun 2020 08:12:16 +0200
- Arc-authentication-results: i=1; mx.zohomail.com; dkim=pass header.i=mkoskar.com; spf=pass smtp.mailfrom=mk@xxxxxxxxxxx; dmarc=pass header.from=<mk@xxxxxxxxxxx> header.from=<mk@xxxxxxxxxxx>
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1593238400; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=ptJEgmlpT52LzYYm2eWUmBWDgZmkI8mbDePqa5+A72I=; b=UInouDPMNvimmVvY8Ffs2LSUgv/vzWns3Ju5/6+hmaYPx2NxihEEjD6PFLnw/5WXjkCB4jM4PdpAyFmXIzIsa0IRRPC0fPpQwfJkH4KQ1nYH/dW8Rn1cVfqXfeOSwZWwGx6o5Mhdt+2FZ8DujINKtBwvybXJpVs6lZ+saHSOVko=
- Arc-seal: i=1; a=rsa-sha256; t=1593238400; cv=none; d=zohomail.com; s=zohoarc; b=LbqElTXyWxd3TLYv+Ew085XDAV9Pe99S+4h+95mSHLZo71B2iSr3Yhx1bc2OnuaIVDZd0fiXkhso5JOCaeM/kdPpclH4EHykYiALv3tUSTXfmdLsVRDeS1ZAmVaLCA/VDX5wJk7LSQsMmzvqJ+1gRqR9Rz8ZoEnbtGNps/A2/Yc=
- Cc: d.s@xxxxxxxxxxxxxxxxxx
- In-reply-to: <cover.1593236365.git.mk@mkoskar.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <cover.1593236365.git.mk@mkoskar.com>
- Sender: zsh-workers@xxxxxxx
---
Completion/Unix/Command/_git | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index fc754e7..602d0d0 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -8087,7 +8087,7 @@ _git() {
local -A git_aliases
local a k v
local endopt='!(-)--end-of-options'
- aliases=(${(0)"$(_call_program aliases git config -z --get-regexp '\^alias\.')"})
+ aliases=(${(0)"$(_call_program aliases git config -z --get-regexp '\^alias\\.')"})
for a in ${aliases}; do
k="${${a/$'\n'*}/alias.}"
v="${a#*$'\n'}"
--
2.27.0
Messages sorted by:
Reverse Date,
Date,
Thread,
Author