Mercurial > hg > xemacs-beta
diff lisp/w3/w3-xemac.el @ 118:7d55a9ba150c r20-1b11
Import from CVS: tag r20-1b11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:24:17 +0200 |
parents | fe104dbd9147 |
children | d2f30a177268 |
line wrap: on
line diff
--- a/lisp/w3/w3-xemac.el Mon Aug 13 09:23:08 2007 +0200 +++ b/lisp/w3/w3-xemac.el Mon Aug 13 09:24:17 2007 +0200 @@ -1,7 +1,7 @@ ;;; w3-xemac.el --- XEmacs specific functions for emacs-w3 ;; Author: wmperry -;; Created: 1997/03/09 01:59:33 -;; Version: 1.16 +;; Created: 1997/04/01 19:23:21 +;; Version: 1.17 ;; Keywords: faces, help, mouse, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -100,26 +100,6 @@ ) (t nil))) -(defun w3-color-light-p (color-or-face) - (let (face color) - (cond - ((or (facep color-or-face) - (and (symbolp color-or-face) - (find-face color-or-face))) - (setq color (specifier-instance (face-background color-or-face)))) - ((color-instance-p color-or-face) - (setq color color-or-face)) - ((color-specifier-p color-or-face) - (setq color (specifier-instance color-or-face))) - ((stringp color-or-face) - (setq color (make-color-instance color-or-face))) - (t (signal 'wrong-type-argument 'color-or-face-p))) - (if color - (not (< (apply '+ (color-instance-rgb-components color)) - (/ (apply '+ (color-instance-rgb-components - (make-color-instance "white"))) 3))) - t))) - (defun w3-mode-motion-hook (e) (let* ((glyph (event-glyph e)) (x (and glyph (event-glyph-x-pixel e)))