summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-10-14 10:12:41 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-10-14 10:12:41 +0200
commit79e8552ed38d17e9e90caf27cf485fc44ac00bb6 (patch)
treed8811c78db20c3271a76cc1548d93899745f2999
parent2f1a92c3b66af755a7f86f801bd21d155ce50d71 (diff)
downloadorg-mode-79e8552ed38d17e9e90caf27cf485fc44ac00bb6.tar.gz
Fix typo in customize type of variable `org-activate-link'
* lisp/org.el (org-activate-links): Fix customize type.
-rw-r--r--lisp/org.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org.el b/lisp/org.el
index a80286f..53a2b47 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -1274,7 +1274,7 @@ type. In principle, it does not hurt to turn on most link types - there may
be a small gain when turning off unused link types. The types are:
bracket The recommended [[link][description]] or [[link]] links with hiding.
-angular Links in angular brackets that may contain whitespace like
+angle Links in angular brackets that may contain whitespace like
<bbdb:Carsten Dominik>.
plain Plain links in normal text, no whitespace, like http://google.com.
radio Text that is matched by a radio target, see manual for details.
@@ -1285,8 +1285,8 @@ footnote Footnote labels.
Changing this variable requires a restart of Emacs to become effective."
:group 'org-link
:type '(set :greedy t
- (const :tag "Double bracket links (new style)" bracket)
- (const :tag "Angular bracket links (old style)" angular)
+ (const :tag "Double bracket links" bracket)
+ (const :tag "Angular bracket links" angle)
(const :tag "Plain text links" plain)
(const :tag "Radio target matches" radio)
(const :tag "Tags" tag)