diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-01-09 16:24:07 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-01-09 16:24:07 -0500 |
commit | 12e1f3289d71b512ef413b31fa94e4918d0b033f (patch) | |
tree | 6282115004279d445919f03b860864abea36ac30 /lisp/org | |
parent | 732eb50a1daa31d6d86190815e7e0833a2a78c27 (diff) | |
download | emacs-12e1f3289d71b512ef413b31fa94e4918d0b033f.tar.gz emacs-12e1f3289d71b512ef413b31fa94e4918d0b033f.tar.bz2 emacs-12e1f3289d71b512ef413b31fa94e4918d0b033f.zip |
Make org-link and idlwave-help-link inherit from link face.
Suggested by Joakim Verona.
* lisp/org/org-faces.el (org-link):
* lisp/progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/org/org-faces.el | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 9bf07deeffe..e8531be05f8 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,8 @@ +2011-01-09 Chong Yidong <cyd@stupidchicken.com> + + * org-faces.el (org-link): Inherit from link face. + Suggested by Joakim Verona. + 2010-12-11 Tassilo Horn <tassilo@member.fsf.org> * org-footnote.el (org-footnote-create-definition): Place diff --git a/lisp/org/org-faces.el b/lisp/org/org-faces.el index 3f8245758f7..d4f458232ce 100644 --- a/lisp/org/org-faces.el +++ b/lisp/org/org-faces.el @@ -1,6 +1,6 @@ ;;; org-faces.el --- Face definitions for Org-mode. -;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 ;; Free Software Foundation, Inc. ;; Author: Carsten Dominik <carsten at orgmode dot org> @@ -247,9 +247,7 @@ 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))) + '((t :inherit link)) "Face for links." :group 'org-faces) |