branch: externals/ebdb
commit 2568b9aeefe04bf183c38589755943b170799368
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Fix dumb bug in gnus and message window config
* ebdb-gnus.el (ebdb-gnus-window-configuration):
* ebdb-message.el (ebdb-message-reply-window-config):
(ebdb-message-reply-yank-window-config): Needed backticks and commas.
---
ebdb-gnus.el | 8 ++++----
ebdb-message.el | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/ebdb-gnus.el b/ebdb-gnus.el
index 51754e0..def0cd4 100644
--- a/ebdb-gnus.el
+++ b/ebdb-gnus.el
@@ -45,18 +45,18 @@ the value of `ebdb-default-window-size'."
`(article
,(cond
(gnus-use-trees
- '(vertical 1.0
+ `(vertical 1.0
(summary 0.25 point)
(tree 0.25)
(horizontal 1.0
(article 1.0)
- (ebdb-gnus ebdb-gnus-window-size))))
+ (ebdb-gnus ,ebdb-gnus-window-size))))
(t
- '(vertical 1.0
+ `(vertical 1.0
(summary 0.25 point)
(horizontal 1.0
(article 1.0)
- (ebdb-gnus ebdb-gnus-window-size))))))
+ (ebdb-gnus ,ebdb-gnus-window-size))))))
"Gnus window configuration to include EBDB.
By default, this adds the *EBDB-Gnus* window to the right of the
article buffer, taking up 40% of the horizontal space."
diff --git a/ebdb-message.el b/ebdb-message.el
index 8abca8a..95a1e18 100644
--- a/ebdb-message.el
+++ b/ebdb-message.el
@@ -43,20 +43,20 @@ the value of `ebdb-default-window-size'."
:type 'float)
(defcustom ebdb-message-reply-window-config
- '(reply
+ `(reply
(horizontal 1.0
(message 1.0 point)
- (ebdb-message ebdb-message-window-size)))
+ (ebdb-message ,ebdb-message-window-size)))
"Message reply window configuration to show EBDB.
See Gnus' manual for details."
:group 'ebdb-mua-message
:type 'list)
(defcustom ebdb-message-reply-yank-window-config
- '(reply-yank
+ `(reply-yank
(horizontal 1.0
(message 1.0 point)
- (ebdb-message ebdb-message-window-size)))
+ (ebdb-message ,ebdb-message-window-size)))
"Message reply-yank window configuration to show EBDB.
See Gnus' manual for details."
:group 'ebdb-mua-message