From 3b2611a278d80c991c03594c2902246c88fcaf61 Mon Sep 17 00:00:00 2001 From: tomo Date: Wed, 20 Dec 2000 08:52:33 +0000 Subject: [PATCH] (emh-set-face-foreground): Use nil as variable of `condition-case'. --- emh-face.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emh-face.el b/emh-face.el index 17fc9a6..f37af61 100644 --- a/emh-face.el +++ b/emh-face.el @@ -1,6 +1,6 @@ ;;; emh-face.el --- header highlighting in emh. -;; Copyright (C) 1997,2000 MORIOKA Tomohiko +;; Copyright (C) 1997,2000 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko ;; Created: 1997/3/4 @@ -29,7 +29,7 @@ (require 'std11) (defsubst emh-set-face-foreground (face color) - (condition-case err + (condition-case nil (set-face-foreground face color) (error (message "Color `%s' is not found." color)))) -- 1.7.10.4