diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-13 23:42:53 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-13 23:42:53 +0000 |
commit | 4f3beabf12b5d30f29b378c0d00c34577c30044e (patch) | |
tree | 901c900ac6e8049b0205c073c8ac04b80cb3b3de | |
parent | e3cd4b53c518ee04eae13e52825fc9ffb5ba59e9 (diff) | |
download | emacs-4f3beabf12b5d30f29b378c0d00c34577c30044e.tar.gz |
(ps-print-color-p): Fix minor error.
-rw-r--r-- | lisp/ps-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index be96506716e..864c087086f 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -936,7 +936,7 @@ when generating Postscript." ;;; Colors (defcustom ps-print-color-p (or (fboundp 'x-color-values) ; Emacs - (fboundp 'pixel-components) ; XEmacs + (fboundp 'pixel-components)) ; XEmacs ; xemacs ; Printing color requires x-color-values. "*If non-nil, print the buffer's text in color." |