[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/magit 07f092ad64 04/10: Make magit-stash-index respect use
From: |
Jonas Bernoulli |
Subject: |
[nongnu] elpa/magit 07f092ad64 04/10: Make magit-stash-index respect user configured function |
Date: |
Thu, 30 Jan 2025 17:16:00 -0500 (EST) |
branch: elpa/magit
commit 07f092ad6445dea216e43c4f95dc7b6c4db9c7ae
Author: IƱaki Arenaza <iarenaza@escomposlinux.org>
Commit: Jonas Bernoulli <jonas@bernoul.li>
Make magit-stash-index respect user configured function
When magit-stash-read-message-function was introduced (in commit
72fbb3a579b), magit-stash-read-args was updated to use it, but
magit-stash-index was not.
Which means that if the user customizes
magit-stash-read-message-function, the customized value will not be
used in magit-stash-index.
---
lisp/magit-stash.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/magit-stash.el b/lisp/magit-stash.el
index 1a8779e974..836b874a6c 100644
--- a/lisp/magit-stash.el
+++ b/lisp/magit-stash.el
@@ -143,7 +143,7 @@ Unstaged and untracked changes are not stashed. The stashed
changes are applied in reverse to both the index and the
worktree. This command can fail when the worktree is not clean.
Applying the resulting stash has the inverse effect."
- (interactive (list (magit-stash-read-message)))
+ (interactive (list (funcall magit-stash-read-message-function)))
(magit-stash-save message t nil nil t 'worktree))
;;;###autoload
- [nongnu] elpa/magit updated (83d89ee5bb -> becbda1071), Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit b241533a68 05/10: magit-commit-children: Cosmetics, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit 6654bd7b3d 06/10: magit-branch-delete: Clarify confusing operation, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit 5e364d2ff3 07/10: Speed up Git's part in listing files in status buffer, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit 0564c0cd87 09/10: magit:--signoff: Speak of "trailer" instead of "line" in description, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit 9400212774 03/10: magit-remote-prune-refspecs: Remove redundant "or" from prompt, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit 5ac6b4fe1e 01/10: AUTHORS.md: Update list of contributors, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit c1ffff0402 08/10: Make --signoff available in more menus, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit 07f092ad64 04/10: Make magit-stash-index respect user configured function,
Jonas Bernoulli <=
- [nongnu] elpa/magit 0f835cea8e 02/10: magit-clone-read-repository: Remove redundant "or" from prompt, Jonas Bernoulli, 2025/01/30
- [nongnu] elpa/magit becbda1071 10/10: magit-process-yes-or-no-prompt-regexp: Fix regexp for cli passphrases, Jonas Bernoulli, 2025/01/30