From 37ac2897149af7928f9537ab8b4c0d064838551e Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 6 Mar 2011 10:01:33 +0100 Subject: [PATCH] org-crypt.el: fix the default value of `org-crypt-key' (should be a string). --- lisp/org-crypt.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lisp/org-crypt.el b/lisp/org-crypt.el index 291c540f1..5cdffca84 100644 --- a/lisp/org-crypt.el +++ b/lisp/org-crypt.el @@ -80,19 +80,22 @@ (defgroup org-crypt nil "Org Crypt" - :tag "Org Crypt" :group 'org) + :tag "Org Crypt" + :group 'org) (defcustom org-crypt-tag-matcher "crypt" "The tag matcher used to find headings whose contents should be encrypted. See the \"Match syntax\" section of the org manual for more details." - :type 'string :group 'org-crypt) + :type 'string + :group 'org-crypt) -(defcustom org-crypt-key nil +(defcustom org-crypt-key "" "The default key to use when encrypting the contents of a heading. This setting can also be overridden in the CRYPTKEY property." - :type 'string :group 'org-crypt) + :type 'string + :group 'org-crypt) (defun org-crypt-key-for-heading () "Return the encryption key for the current heading."