aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/org/ChangeLog5
-rw-r--r--lisp/org/org-faces.el6
-rw-r--r--lisp/progmodes/idlw-help.el5
4 files changed, 12 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d359fa927bc..cd5ec46128b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12011-01-09 Chong Yidong <cyd@stupidchicken.com> 12011-01-09 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link
4 face. Suggested by Joakim Verona.
5
3 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt. 6 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
4 7
5 * wid-edit.el (visibility): Replace :on-image and :off-image 8 * wid-edit.el (visibility): Replace :on-image and :off-image
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 @@
12011-01-09 Chong Yidong <cyd@stupidchicken.com>
2
3 * org-faces.el (org-link): Inherit from link face.
4 Suggested by Joakim Verona.
5
12010-12-11 Tassilo Horn <tassilo@member.fsf.org> 62010-12-11 Tassilo Horn <tassilo@member.fsf.org>
2 7
3 * org-footnote.el (org-footnote-create-definition): Place 8 * 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 @@
1;;; org-faces.el --- Face definitions for Org-mode. 1;;; org-faces.el --- Face definitions for Org-mode.
2 2
3;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 3;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Author: Carsten Dominik <carsten at orgmode dot org> 6;; Author: Carsten Dominik <carsten at orgmode dot org>
@@ -247,9 +247,7 @@ column view defines special faces for each outline level. See the file
247 :group 'org-faces) 247 :group 'org-faces)
248 248
249(defface org-link 249(defface org-link
250 '((((class color) (background light)) (:foreground "Purple" :underline t)) 250 '((t :inherit link))
251 (((class color) (background dark)) (:foreground "Cyan" :underline t))
252 (t (:underline t)))
253 "Face for links." 251 "Face for links."
254 :group 'org-faces) 252 :group 'org-faces)
255 253
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 @@
1;;; idlw-help.el --- HTML Help code for IDLWAVE 1;;; idlw-help.el --- HTML Help code for IDLWAVE
2 2
3;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 3;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4;; 2009, 2010 Free Software Foundation, Inc. 4;; 2009, 2010, 2011 Free Software Foundation, Inc.
5;; 5;;
6;; Authors: J.D. Smith <jdsmith@as.arizona.edu> 6;; Authors: J.D. Smith <jdsmith@as.arizona.edu>
7;; Carsten Dominik <dominik@science.uva.nl> 7;; Carsten Dominik <dominik@science.uva.nl>
@@ -195,8 +195,7 @@ support."
195 :type 'string) 195 :type 'string)
196 196
197(defface idlwave-help-link 197(defface idlwave-help-link
198 '((((class color)) (:foreground "Blue")) 198 '((t :inherit link))
199 (t (:weight bold)))
200 "Face for highlighting links into IDLWAVE online help." 199 "Face for highlighting links into IDLWAVE online help."
201 :group 'idlwave-online-help) 200 :group 'idlwave-online-help)
202 201