emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/consult 620b10d: Fix `consult--command-split` (#386)


From: ELPA Syncer
Subject: [elpa] externals/consult 620b10d: Fix `consult--command-split` (#386)
Date: Sat, 7 Aug 2021 14:57:07 -0400 (EDT)

branch: externals/consult
commit 620b10db130fc62cf104ea1a91d6a6e38ceb8bc1
Author: Mohamed Abdelnour <68501778+mohamed-abdelnour@users.noreply.github.com>
Commit: GitHub <noreply@github.com>

    Fix `consult--command-split` (#386)
---
 consult.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/consult.el b/consult.el
index 405470c..4e88a0e 100644
--- a/consult.el
+++ b/consult.el
@@ -536,7 +536,7 @@ ARGS is a list of commands or sources followed by the list 
of keyword-value pair
   (save-match-data
     (let ((opts (when (string-match " +--\\( +\\|\\'\\)" str)
                   (prog1 (substring str (match-end 0))
-                    (setq str (substring str 0 (match-end 0)))))))
+                    (setq str (substring str 0 (match-beginning 0)))))))
       (unless (string-blank-p str)
         ;; split-string-and-unquote fails if the quotes are invalid. Ignore it.
         (cons str (and opts (ignore-errors (split-string-and-unquote 
opts))))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]