summaryrefslogtreecommitdiff
path: root/lisp/vc/ediff-init.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-08-23 16:34:01 +0200
committerStefan Kangas <stefankangas@gmail.com>2022-08-23 16:51:31 +0200
commit8673c0e256c3bf75b20a3a7a221b9240e7dc874a (patch)
tree1a35c3489fbb421319237c29e4ea0bfb1dccfbad /lisp/vc/ediff-init.el
parent4ee8a6c124a15f0da45b5de83af12cbbf0343815 (diff)
downloademacs-8673c0e256c3bf75b20a3a7a221b9240e7dc874a.tar.gz
Make XEmacs compat alias face-background-pixmap obsolete
* lisp/faces.el (face-background-pixmap) (set-face-background-pixmap): Make XEmacs compat aliases obsolete in favor of 'face-stipple' and 'set-face-stipple'. Update callers. * lisp/emacs-lisp/gv.el (face-background-pixmap): Make XEmacs alias obsolete as a generalized variable. (face-stipple): New generalized variable. * doc/misc/cl.texi (Setf Extensions): Refer to above new generalized variable instead of the obsolete one.
Diffstat (limited to 'lisp/vc/ediff-init.el')
-rw-r--r--lisp/vc/ediff-init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/ediff-init.el b/lisp/vc/ediff-init.el
index a3e77200ddf..c956cdd2ee6 100644
--- a/lisp/vc/ediff-init.el
+++ b/lisp/vc/ediff-init.el
@@ -765,7 +765,7 @@ Ediff needs to find fine differences."
"Set stipple pixmap of FACE to PIXMAP on a monochrome display."
(if (and (display-graphic-p) (not (display-color-p)))
(condition-case nil
- (set-face-background-pixmap face pixmap)
+ (set-face-stipple face pixmap)
(error
(message "Pixmap not found for %S: %s" (face-name face) pixmap)
(sit-for 1)))))