bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#648: htmlize.el doesn't work fine


From: Juanma Barranquero
Subject: bug#648: htmlize.el doesn't work fine
Date: Tue, 5 Aug 2008 10:52:54 +0200

On Tue, Aug 5, 2008 at 08:06, clinif <clin24@gmail.com> wrote:

> Debugger entered--Lisp error: (error "Invalid face")
>   internal-get-lisp-face-attribute(nil :height nil)
>   face-attribute(nil :height)

In Emacs 23.X,

  (face-attribute 'default :inherit) => nil

while in Emacs 22.X,

  (face-attribute 'default :inherit) => unspecified

I'm not sure whether that's a bug, but it is an incompatible change.

For the time being, you can patch your htmlize.el, changing one line
of htmlize-face-size, from

          for f = face then (face-attribute f :inherit)

to

          for f = face then (or (face-attribute f :inherit) 'unspecified)

 Juanma






reply via email to

[Prev in Thread] Current Thread [Next in Thread]