1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(ps-face-foreground-name, ps-face-background-name):

Replace aliased functions with calls where second arg `inherit' is t.
This commit is contained in:
Juri Linkov 2005-06-22 12:07:36 +00:00
parent 5715f853a0
commit 8906db2766
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-06-22 Juri Linkov <juri@jurta.org>
* ps-print.el (ps-face-foreground-name, ps-face-background-name):
Replace aliased functions with calls where second arg `inherit' is t.
2005-06-22 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gdb-ui.el (gdb-error): New variable.

View File

@ -1549,9 +1549,10 @@ Please send all bug fixes and enhancements to
(defvar mark-active nil)
(defun ps-mark-active-p ()
mark-active)
(defalias 'ps-face-foreground-name 'face-foreground)
(defalias 'ps-face-background-name 'face-background)
))
(defun ps-face-foreground-name (face)
(face-foreground face nil t))
(defun ps-face-background-name (face)
(face-background face nil t))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;