From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: (require 'htmlize) in org-exp should have NOERROR set Date: Mon, 17 Nov 2008 09:52:43 +0100 Message-ID: References: <873ahri4gh.fsf@gmail.com> <37E7217E-420D-474A-B178-AD54D15878C8@uva.nl> <87tza6u4cz.fsf@gmail.com> Mime-Version: 1.0 (Apple Message framework v929.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L1zql-0001ID-8p for emacs-orgmode@gnu.org; Mon, 17 Nov 2008 03:52:51 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L1zqj-0001GZ-NZ for emacs-orgmode@gnu.org; Mon, 17 Nov 2008 03:52:50 -0500 Received: from [199.232.76.173] (port=43388 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L1zqj-0001GP-J1 for emacs-orgmode@gnu.org; Mon, 17 Nov 2008 03:52:49 -0500 Received: from mx20.gnu.org ([199.232.41.8]:54222) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L1zqj-0001lI-3K for emacs-orgmode@gnu.org; Mon, 17 Nov 2008 03:52:49 -0500 Received: from ug-out-1314.google.com ([66.249.92.170]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L1zqi-0002Rh-Be for emacs-orgmode@gnu.org; Mon, 17 Nov 2008 03:52:48 -0500 Received: by ug-out-1314.google.com with SMTP id 36so419743uga.17 for ; Mon, 17 Nov 2008 00:52:45 -0800 (PST) In-Reply-To: <87tza6u4cz.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Paul R Cc: emacs-orgmode@gnu.org On Nov 17, 2008, at 9:46 AM, Paul R wrote: > Hi, > > Carsten> Fixed, thanks. - Carsten > > So you have a working version of htmlize for emacs 23 ? The one on > emacswiki is broken with emacs 23 AFAICT. This works for me: --- htmlize.el.orig 2008-10-20 18:59:21.000000000 +0200 +++ htmlize.el 2008-10-20 18:59:50.000000000 +0200 @@ -867,7 +867,7 @@ (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))))