summaryrefslogtreecommitdiff
path: root/lisp/play
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2020-08-30 13:37:37 +0200
committerStefan Kangas <stefankangas@gmail.com>2020-08-30 21:09:07 +0200
commit87b4368862c621259e5c45dd65420fa93c7d037a (patch)
tree7dc1aeafb89e5461363b3370c263d55abb9bea1d /lisp/play
parent2c284889e0fbfe9c9c23e471a53436e85345e8f4 (diff)
downloademacs-87b4368862c621259e5c45dd65420fa93c7d037a.tar.gz
emacs-87b4368862c621259e5c45dd65420fa93c7d037a.tar.bz2
emacs-87b4368862c621259e5c45dd65420fa93c7d037a.zip
Remove some XEmacs compat code from gamegrid.el
* lisp/play/gamegrid.el (gamegrid-setup-face): Remove XEmacs compat code.
Diffstat (limited to 'lisp/play')
-rw-r--r--lisp/play/gamegrid.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el
index f0132135fd9..9b74eb913e0 100644
--- a/lisp/play/gamegrid.el
+++ b/lisp/play/gamegrid.el
@@ -265,12 +265,7 @@ format."
(set-face-foreground face color)
(set-face-background face color)
(gamegrid-set-font face)
- (condition-case nil
- (set-face-background-pixmap face [nothing]);; XEmacs
- (error nil))
- (condition-case nil
- (set-face-background-pixmap face nil);; Emacs
- (error nil)))
+ (set-face-background-pixmap face nil))
(defun gamegrid-make-mono-tty-face ()
(let ((face (make-face 'gamegrid-mono-tty-face)))