]> git.eshelyaron.com Git - emacs.git/commitdiff
Attribute face for faces specified as string.
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Wed, 23 Dec 2009 22:45:06 +0000 (22:45 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Wed, 23 Dec 2009 22:45:06 +0000 (22:45 +0000)
lisp/ChangeLog
lisp/ps-print.el

index 193aa942fe13a5aa8b800efb09007eb4ce9b4a77..c5b6c6a82f055e982f098df794252de0d2a48407 100644 (file)
@@ -1,3 +1,10 @@
+2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
+
+       * ps-print.el (ps-face-attributes): It was not returning the
+       attribute face for faces specified as string.  Reported by harven
+       <harven@free.fr>.
+       (ps-print-version): New version 7.3.5.
+
 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
 
        * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed
index 386fc14b7aef9e0bb52ba589f0442792ccd6c39c..8ff2a990c383f27f3f534273b5bfb9649bc2356f 100644 (file)
 ;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters)
 ;;     Vinicius Jose Latorre <viniciusjl@ig.com.br>
 ;; 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)