aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinglu Chen <public@yoctocell.xyz>2021-04-24 15:05:39 +0200
committerXinglu Chen <public@yoctocell.xyz>2021-04-24 15:05:39 +0200
commit3b9cfc72287dcb5c4ad10e0cdeb8961953752b60 (patch)
tree96375876b1b9b0965d3d97f749d5afcd37e6f72c
parent2aee67ba49551d2e62d16877a7c742d3ef607186 (diff)
git-email: Reverse the comparison for sorting message buffers.
Oops, wrong order. * git-email.el (git-email-message-buffer-greaterp): Use ‘>’ instead of ‘<’.
-rw-r--r--git-email.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-email.el b/git-email.el
index f364367..65095f1 100644
--- a/git-email.el
+++ b/git-email.el
@@ -423,7 +423,7 @@ default behavior is to delete them after sending the message."
name))))
(let ((old (regexp old))
(new (regexp new)))
- (< old new))))
+ (> old new))))
(defun git-email-send-all ()
"Send all unsent emails."