From: Vinicius Jose Latorre Date: Wed, 23 Dec 2009 22:45:06 +0000 (+0000) Subject: Attribute face for faces specified as string. X-Git-Tag: emacs-pretest-23.1.91~40 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc1dcfa4a70f09f32e102db9a8d1528fb9312481;p=emacs.git Attribute face for faces specified as string. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 193aa942fe1..c5b6c6a82f0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2009-12-23 Vinicius Jose Latorre + + * ps-print.el (ps-face-attributes): It was not returning the + attribute face for faces specified as string. Reported by harven + . + (ps-print-version): New version 7.3.5. + 2009-12-18 Ulf Jasper * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 386fc14b7ae..8ff2a990c38 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -11,11 +11,11 @@ ;; Maintainer: Kenichi Handa (multi-byte characters) ;; Vinicius Jose Latorre ;; Keywords: wp, print, PostScript -;; Version: 7.3.4 +;; Version: 7.3.5 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre -(defconst ps-print-version "7.3.4" - "ps-print.el, v 7.3.4 <2009/01/24 vinicius> +(defconst ps-print-version "7.3.5" + "ps-print.el, v 7.3.5 <2009/12/23 vinicius> Vinicius's last change version -- this file may have been edited as part of Emacs without changes to the version number. When reporting bugs, please also @@ -6249,6 +6249,7 @@ If FACE is not in `ps-print-face-extension-alist' or in return the attribute vector. If FACE is not a valid face name, use default face." + (and (stringp face) (facep face) (setq face (intern face))) (cond (ps-black-white-faces-alist (or (and (symbolp face)