diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-08-30 13:37:37 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-08-30 21:09:07 +0200 |
commit | 87b4368862c621259e5c45dd65420fa93c7d037a (patch) | |
tree | 7dc1aeafb89e5461363b3370c263d55abb9bea1d /lisp/play | |
parent | 2c284889e0fbfe9c9c23e471a53436e85345e8f4 (diff) | |
download | emacs-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.el | 7 |
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))) |