branch: elpa/htmlize
commit 2a42b1aabaa50aa4fa333badf9b1d868cd214def
Author: Hrvoje Niksic <[email protected]>
Commit: Hrvoje Niksic <[email protected]>
Version 1.36.
---
htmlize.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/htmlize.el b/htmlize.el
index f1c4e11..89a57b4 100644
--- a/htmlize.el
+++ b/htmlize.el
@@ -1,6 +1,6 @@
;; htmlize.el -- Convert buffer text and decorations to HTML.
-;; Copyright (C) 1997,1998,1999,2000,2001,2002,2003,2005,2006 Hrvoje Niksic
+;; Copyright (C) 1997,1998,1999,2000,2001,2002,2003,2005,2006,2009 Hrvoje
Niksic
;; Author: Hrvoje Niksic <[email protected]>
;; Keywords: hypermedia, extensions
@@ -96,7 +96,7 @@
;; `cl' is loaded.
(load "cl-extra")))
-(defconst htmlize-version "1.34")
+(defconst htmlize-version "1.36")
;; Incantations to make custom stuff work without customize, e.g. on
;; XEmacs 19.14 or GNU Emacs 19.34.
@@ -867,7 +867,7 @@ If no rgb.txt file is found, return nil."
(let ((size-list
(loop
for f = face then (face-attribute f :inherit)
- until (eq f 'unspecified)
+ until (or (not f) (eq f 'unspecified))
for h = (face-attribute f :height)
collect (if (eq h 'unspecified) nil h))))
(reduce 'htmlize-merge-size (cons nil size-list))))