face: make org-link inherit from link

* org-faces.el (org-link): Make org-link inherits from link face.

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2011-02-02 21:21:24 +00:00 committed by Bastien Guerry
parent 0b7ce5f47d
commit 44e68033ee
1 changed files with 4 additions and 3 deletions

View File

@ -247,9 +247,10 @@ column view defines special faces for each outline level. See the file
:group 'org-faces)
(defface org-link
'((((class color) (background light)) (:foreground "Purple" :underline t))
(((class color) (background dark)) (:foreground "Cyan" :underline t))
(t (:underline t)))
(org-compatible-face 'link
'((((class color) (background light)) (:foreground "Purple" :underline t))
(((class color) (background dark)) (:foreground "Cyan" :underline t))
(t (:underline t))))
"Face for links."
:group 'org-faces)