Browse Source

Fixed typo in org-activate-links.

Bastien Guerry 17 years ago
parent
commit
c6629c8f96
2 changed files with 5 additions and 2 deletions
  1. 4 0
      ChangeLog
  2. 1 2
      org.el

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+2008-02-28  Bastien Guerry  <bzg@altern.org>
+
+	* org.el (org-activate-links): Fixed typo.
+
 2008-02-28  Glenn Morris <rgm@gnu.org>
 
 	* org.el (org-info): Use `info' instead of `Info-goto-node'.

+ 1 - 2
org.el

@@ -1165,10 +1165,9 @@ Changing this variable requires a restart of Emacs to become effective."
   :group 'org-link
   :type '(set (const :tag "Double bracket links (new style)" bracket)
 	      (const :tag "Angular bracket links (old style)" angular)
-	      (const :tag "plain text links" plain)
+	      (const :tag "Plain text links" plain)
 	      (const :tag "Radio target matches" radio)
 	      (const :tag "Tags" tag)
-	      (const :tag "Tags" target)
 	      (const :tag "Timestamps" date)))
 
 (defgroup org-link-store nil