summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Lundin <mdl@imapmail.org>2011-07-18 12:37:20 -0500
committerEric Schulte <schulte.eric@gmail.com>2011-07-18 12:07:17 -0600
commitbfed5b0aff33e84c0ee94a6bbc07829e2512bd58 (patch)
tree9817f458672644fce7840a8535676c80f5061dd2
parentd017fe977f5ca8c01fa7355123039156f617ee8d (diff)
downloadorg-mode-bfed5b0aff33e84c0ee94a6bbc07829e2512bd58.tar.gz
Fix argument to org-toggle-tag.
* lisp/org-bibtex.el: (org-bibtex-create, org-bibtex-write): Change argument of org-toggle-tag to 'on. (Other arguments, e.g., t, have no effect).
-rw-r--r--lisp/org-bibtex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-bibtex.el b/lisp/org-bibtex.el
index 6536917..165e96f 100644
--- a/lisp/org-bibtex.el
+++ b/lisp/org-bibtex.el
@@ -555,7 +555,7 @@ If nonew is t, add data to the headline of the entry at point."
(org-bibtex-put "TITLE" title)))
(org-bibtex-put "TYPE" (substring (symbol-name type) 1))
(org-bibtex-fleshout type arg)
- (mapc (lambda (tag) (org-toggle-tag tag t)) org-bibtex-tags)))
+ (mapc (lambda (tag) (org-toggle-tag tag 'on)) org-bibtex-tags)))
(defun org-bibtex-create-in-current-entry (&optional arg)
"Add bibliographical data to the current entry.
@@ -594,7 +594,7 @@ This uses `bibtex-parse-entry'."
(let ((entry (pop *org-bibtex-entries*))
(org-special-properties nil)) ; avoids errors with `org-entry-put'
(flet ((val (field) (cdr (assoc field entry)))
- (togtag (tag) (org-toggle-tag tag t)))
+ (togtag (tag) (org-toggle-tag tag 'on)))
(org-insert-heading)
(insert (val :title))
(org-bibtex-put "TITLE" (val :title))