diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-10-17 15:46:06 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-10-17 15:49:12 +0200 |
commit | 9a7c8672d2b48a355d3ed41ef561b22e886858b8 (patch) | |
tree | d6ed7067078ad6b8b98845884d6f8e2b866e0061 /app-emacs/mailcrypt | |
parent | app-emacs/gnuserv: Fix backquotes patch. (diff) | |
download | gentoo-9a7c8672d2b48a355d3ed41ef561b22e886858b8.tar.gz gentoo-9a7c8672d2b48a355d3ed41ef561b22e886858b8.tar.bz2 gentoo-9a7c8672d2b48a355d3ed41ef561b22e886858b8.zip |
app-emacs/mailcrypt: Fix backquotes patch.
This is purely cosmetic, because the affected code in mc-gpg.el won't
be called in Emacs version 20 or later. Therefore committing this
straight to stable.
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/mailcrypt')
-rw-r--r-- | app-emacs/mailcrypt/files/mailcrypt-3.5.9-backquotes.patch | 2 | ||||
-rw-r--r-- | app-emacs/mailcrypt/mailcrypt-3.5.9-r2.ebuild (renamed from app-emacs/mailcrypt/mailcrypt-3.5.9-r1.ebuild) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app-emacs/mailcrypt/files/mailcrypt-3.5.9-backquotes.patch b/app-emacs/mailcrypt/files/mailcrypt-3.5.9-backquotes.patch index 7cacdbb9e482..26b0e4301adc 100644 --- a/app-emacs/mailcrypt/files/mailcrypt-3.5.9-backquotes.patch +++ b/app-emacs/mailcrypt/files/mailcrypt-3.5.9-backquotes.patch @@ -5,7 +5,7 @@ "Execute the forms in BODY with BUFFER as the current buffer. The value returned is the value of the last form in BODY." - (` (save-excursion (set-buffer (, buffer)) (,@ body))))) -+ `(save-excursion (set-buffer (, buffer)) (,@ body)))) ++ `(save-excursion (set-buffer ,buffer) ,@body))) ) (defun mc-gpg-debug-print (string) diff --git a/app-emacs/mailcrypt/mailcrypt-3.5.9-r1.ebuild b/app-emacs/mailcrypt/mailcrypt-3.5.9-r2.ebuild index 88f148624b2b..60f6a2ed7f21 100644 --- a/app-emacs/mailcrypt/mailcrypt-3.5.9-r1.ebuild +++ b/app-emacs/mailcrypt/mailcrypt-3.5.9-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 |