summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-09-21 10:39:44 +0200
committerBastien Guerry <bzg@altern.org>2012-09-21 10:39:44 +0200
commit1434394730cb92cf90c2e6ae87be2e389e3bda12 (patch)
tree6a12fe0735ed713148a0c588afef074b7f5e9bb9
parent77a48150478990fe8579e338ec286ac6e862131d (diff)
downloadorg-mode-1434394730cb92cf90c2e6ae87be2e389e3bda12.tar.gz
contrib/lisp/org-wikinodes.el: Fix typo
* org-wikinodes.el (org-wikinodes-clear-directory-targets-cache): Rename from mispelled name. (org-wikinodes-follow-link) (org-wikinodes-clear-cache-when-on-target): Use the correct name.
-rw-r--r--contrib/lisp/org-wikinodes.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/lisp/org-wikinodes.el b/contrib/lisp/org-wikinodes.el
index 72af6eb..12091b6 100644
--- a/contrib/lisp/org-wikinodes.el
+++ b/contrib/lisp/org-wikinodes.el
@@ -115,7 +115,7 @@ variable `org-wikinodes-scope'.
If a target headline is not found, it may be created according to the
setting of `org-wikinodes-create-targets'."
- (if current-prefix-arg (org-wikinodes-clear-direcory-targets-cache))
+ (if current-prefix-arg (org-wikinodes-clear-directory-targets-cache))
(let ((create org-wikinodes-create-targets)
visiting buffer m pos file rpl)
(setq pos
@@ -184,10 +184,10 @@ setting of `org-wikinodes-create-targets'."
(org-in-regexp (format org-complex-heading-regexp-format
org-wikinodes-camel-regexp))
(org-in-regexp org-wikinodes-camel-regexp))
- (org-wikinodes-clear-direcory-targets-cache)
+ (org-wikinodes-clear-directory-targets-cache)
t))
-(defun org-wikinodes-clear-direcory-targets-cache ()
+(defun org-wikinodes-clear-directory-targets-cache ()
"Clear the cache where to find wiki targets."
(interactive)
(setq org-wikinodes-directory-targets-cache nil)