diff options
| author | Vinicius Jose Latorre | 2009-12-23 22:45:06 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2009-12-23 22:45:06 +0000 |
| commit | dc1dcfa4a70f09f32e102db9a8d1528fb9312481 (patch) | |
| tree | 66b3b01d580b16238774507f91258ceaaec4e20e | |
| parent | efeee2cd6fd11410a0cb48ac10037dcaf4ec4f20 (diff) | |
| download | emacs-dc1dcfa4a70f09f32e102db9a8d1528fb9312481.tar.gz emacs-dc1dcfa4a70f09f32e102db9a8d1528fb9312481.zip | |
Attribute face for faces specified as string.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/ps-print.el | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 193aa942fe1..c5b6c6a82f0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 2 | |||
| 3 | * ps-print.el (ps-face-attributes): It was not returning the | ||
| 4 | attribute face for faces specified as string. Reported by harven | ||
| 5 | <harven@free.fr>. | ||
| 6 | (ps-print-version): New version 7.3.5. | ||
| 7 | |||
| 1 | 2009-12-18 Ulf Jasper <ulf.jasper@web.de> | 8 | 2009-12-18 Ulf Jasper <ulf.jasper@web.de> |
| 2 | 9 | ||
| 3 | * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed | 10 | * 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 @@ | |||
| 11 | ;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters) | 11 | ;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters) |
| 12 | ;; Vinicius Jose Latorre <viniciusjl@ig.com.br> | 12 | ;; Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 13 | ;; Keywords: wp, print, PostScript | 13 | ;; Keywords: wp, print, PostScript |
| 14 | ;; Version: 7.3.4 | 14 | ;; Version: 7.3.5 |
| 15 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre | 15 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre |
| 16 | 16 | ||
| 17 | (defconst ps-print-version "7.3.4" | 17 | (defconst ps-print-version "7.3.5" |
| 18 | "ps-print.el, v 7.3.4 <2009/01/24 vinicius> | 18 | "ps-print.el, v 7.3.5 <2009/12/23 vinicius> |
| 19 | 19 | ||
| 20 | Vinicius's last change version -- this file may have been edited as part of | 20 | Vinicius's last change version -- this file may have been edited as part of |
| 21 | Emacs without changes to the version number. When reporting bugs, please also | 21 | 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 | |||
| 6249 | return the attribute vector. | 6249 | return the attribute vector. |
| 6250 | 6250 | ||
| 6251 | If FACE is not a valid face name, use default face." | 6251 | If FACE is not a valid face name, use default face." |
| 6252 | (and (stringp face) (facep face) (setq face (intern face))) | ||
| 6252 | (cond | 6253 | (cond |
| 6253 | (ps-black-white-faces-alist | 6254 | (ps-black-white-faces-alist |
| 6254 | (or (and (symbolp face) | 6255 | (or (and (symbolp face) |