]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some compat code from htmlfontify.el
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 21:11:02 +0000 (23:11 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 21:19:09 +0000 (23:19 +0200)
* lisp/htmlfontify.el (hfy-color-vals): color-values is always
defined.

lisp/htmlfontify.el

index 6265537e885f939d5fe97121db8ddb0172b0befd..4d653972c95450fd074bcf9a3a7a5e055fc10329 100644 (file)
@@ -556,10 +556,7 @@ If a window system is unavailable, calls `hfy-fallback-color-values'."
        '(1 2 3))
     ;;(message ">> %s" color)
     (if window-system
-        (if (fboundp 'color-values)
-            (color-values color)
-          ;;(message "[%S]" window-system)
-          (x-color-values color))
+        (color-values color)
       ;; blarg - tty colors are no good - go fetch some X colors:
       (hfy-fallback-color-values color))))
 (define-obsolete-function-alias 'hfy-colour-vals #'hfy-color-vals "27.1")