summaryrefslogtreecommitdiff
path: root/bog.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-06-05 01:05:57 -0400
committerKyle Meyer <kyle@kyleam.com>2014-06-05 01:05:57 -0400
commitcfbe94f82aeabaa3b7258e253ea801a567d5912a (patch)
tree397c583abfa00cc9f571ac5850ec04c200caede7 /bog.el
parentefa6371a320de31b3e549d591cc50fc739286bff (diff)
downloadbog-cfbe94f82aeabaa3b7258e253ea801a567d5912a.tar.gz
Rename bog-citekey-only-p to bog-citekey-p
Old `bog-citekey-p' was not being used.
Diffstat (limited to 'bog.el')
-rw-r--r--bog.el13
1 files changed, 4 insertions, 9 deletions
diff --git a/bog.el b/bog.el
index b30ca2c..e5f1493 100644
--- a/bog.el
+++ b/bog.el
@@ -229,7 +229,7 @@ year, and the first meaningful word in the title)."
(defun bog-citekey-at-point ()
(let ((maybe-citekey (thing-at-point 'word)))
(when (and maybe-citekey
- (bog-citekey-only-p maybe-citekey))
+ (bog-citekey-p maybe-citekey))
(substring-no-properties maybe-citekey))))
(defun bog-citekey-from-notes ()
@@ -254,20 +254,15 @@ year, and the first meaningful word in the title)."
(defun bog-citekey-from-heading-title ()
(let ((title (org-no-properties (org-get-heading t t))))
- (when (bog-citekey-only-p title)
+ (when (bog-citekey-p title)
title)))
-(defun bog-citekey-p (text)
- "Indicate if TEXT matches `bog-citekey-format'."
- (when (string-match bog-citekey-format text)
- t))
-
(defun bog-citekey-from-property ()
(-when-let (prop (org-entry-get (point) bog-citekey-property))
- (when (bog-citekey-only-p prop)
+ (when (bog-citekey-p prop)
prop)))
-(defun bog-citekey-only-p (text)
+(defun bog-citekey-p (text)
"Indicate if all of TEXT matches `bog-citekey-format'."
(string-match bog-citekey-format text)
(when (equal (length text) (match-end 0))