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/progmodes | |
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/progmodes')
-rw-r--r-- | lisp/progmodes/idlw-help.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/progmodes/idlw-help.el b/lisp/progmodes/idlw-help.el index 0674ccf730a..f8121beb231 100644 --- a/lisp/progmodes/idlw-help.el +++ b/lisp/progmodes/idlw-help.el @@ -1,7 +1,7 @@ ;;; idlw-help.el --- HTML Help code for IDLWAVE ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, -;; 2009, 2010 Free Software Foundation, Inc. +;; 2009, 2010, 2011 Free Software Foundation, Inc. ;; ;; Authors: J.D. Smith <jdsmith@as.arizona.edu> ;; Carsten Dominik <dominik@science.uva.nl> @@ -195,8 +195,7 @@ support." :type 'string) (defface idlwave-help-link - '((((class color)) (:foreground "Blue")) - (t (:weight bold))) + '((t :inherit link)) "Face for highlighting links into IDLWAVE online help." :group 'idlwave-online-help) |