diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ps-print.el | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 96f68e2dde1..cca0beb894e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-06-22 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * ps-print.el (ps-face-foreground-name, ps-face-background-name): | ||
| 4 | Replace aliased functions with calls where second arg `inherit' is t. | ||
| 5 | |||
| 1 | 2005-06-22 Nick Roberts <nickrob@snap.net.nz> | 6 | 2005-06-22 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 7 | ||
| 3 | * progmodes/gdb-ui.el (gdb-error): New variable. | 8 | * progmodes/gdb-ui.el (gdb-error): New variable. |
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 2868ae7d97b..e62ab644a1c 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el | |||
| @@ -1549,9 +1549,10 @@ Please send all bug fixes and enhancements to | |||
| 1549 | (defvar mark-active nil) | 1549 | (defvar mark-active nil) |
| 1550 | (defun ps-mark-active-p () | 1550 | (defun ps-mark-active-p () |
| 1551 | mark-active) | 1551 | mark-active) |
| 1552 | (defalias 'ps-face-foreground-name 'face-foreground) | 1552 | (defun ps-face-foreground-name (face) |
| 1553 | (defalias 'ps-face-background-name 'face-background) | 1553 | (face-foreground face nil t)) |
| 1554 | )) | 1554 | (defun ps-face-background-name (face) |
| 1555 | (face-background face nil t)))) | ||
| 1555 | 1556 | ||
| 1556 | 1557 | ||
| 1557 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 1558 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |