diff options
| author | Xinglu Chen <public@yoctocell.xyz> | 2021-04-24 15:05:39 +0200 |
|---|---|---|
| committer | Xinglu Chen <public@yoctocell.xyz> | 2021-04-24 15:05:39 +0200 |
| commit | 3b9cfc72287dcb5c4ad10e0cdeb8961953752b60 (patch) | |
| tree | 96375876b1b9b0965d3d97f749d5afcd37e6f72c | |
| parent | 2aee67ba49551d2e62d16877a7c742d3ef607186 (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.el | 2 |
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." |
