branch: externals/gnorb
commit 15726f03ef8e550c81261abfbcc53536ad722c60
Author: Eric Abrahamsen <[email protected]>
Commit: Stefan Monnier <[email protected]>
[gnorb] Missing quote in nested `eval-after-load', bump to 1.5.5
* packages/gnorb/gnorb-utils.el (gnorb-install-defaults): Needed to
protect inner form from evaluation.
* packages/gnorb/gnorb.el: Bump to 1.5.5.
---
gnorb-utils.el | 2 +-
gnorb.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnorb-utils.el b/gnorb-utils.el
index 63469cc..c38932b 100644
--- a/gnorb-utils.el
+++ b/gnorb-utils.el
@@ -637,7 +637,7 @@ registry be in use, and should be called after the call to
(define-key bbdb-mode-map (kbd "C-c l") #'gnorb-bbdb-open-link)
(define-key bbdb-mode-map [remap bbdb-mail] #'gnorb-bbdb-mail)
(eval-after-load "gnorb-org"
- (org-defkey org-mode-map (kbd "C-c C") #'gnorb-org-contact-link))))
+ '(org-defkey org-mode-map (kbd "C-c C") #'gnorb-org-contact-link))))
(eval-after-load "gnorb-org"
'(progn
(org-defkey org-mode-map (kbd "C-c t") #'gnorb-org-handle-mail)
diff --git a/gnorb.el b/gnorb.el
index 8bf57a4..ffd778d 100644
--- a/gnorb.el
+++ b/gnorb.el
@@ -2,7 +2,7 @@
;; Copyright (C) 2018 Free Software Foundation, Inc.
-;; Version: 1.5.4
+;; Version: 1.5.5
;; Package-Requires: ((cl-lib "0.5"))
;; Maintainer: Eric Abrahamsen <[email protected]>