[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
make ps-print-buffer-with-faces all bold
From: |
myglc2 |
Subject: |
make ps-print-buffer-with-faces all bold |
Date: |
Sat, 23 Jul 2016 17:09:36 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) |
I alway want emacs printout in color but find the 'normal' faces
frustratingly unreadable, especially in low contrast colors. So... Here
is how to make everything bold in ps-print-buffer-with-faces, etc.
;; ps-print in all bold fonts
(ps-extend-face-list
(mapcar (function (lambda (x) (list x
(face-attribute x :foreground)
(face-attribute x :background)
'bold)))
(face-list)) 'MERGE)
- make ps-print-buffer-with-faces all bold,
myglc2 <=