]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-define-space-face): Don't make face if non-X.
authorKarl Heuer <kwzh@gnu.org>
Sun, 5 Nov 1995 04:40:19 +0000 (04:40 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sun, 5 Nov 1995 04:40:19 +0000 (04:40 +0000)
lisp/progmodes/make-mode.el

index c40cf7beee9773144fc51d88b5301d8e11328ef6..51e2651fc4bff4c34bd4d82dd41a0b1fa6137b2f 100644 (file)
@@ -1,4 +1,4 @@
-;;; makefile.el --- makefile editing commands for Emacs
+;;; make-mode.el --- makefile editing commands for Emacs
 
 ;; Copyright (C) 1992, 1994 Free Software Foundation, Inc.
 
@@ -1362,7 +1362,8 @@ Uses `makefile-use-curly-braces-for-macros-p'."
     (nreverse alist)))
 
 (defun makefile-define-space-face ()
-  (make-face 'makefile-space-face)
+  (if (eq window-system 'x)
+      (make-face 'makefile-space-face))
   (or (face-differs-from-default-p 'makefile-space-face)
       (let* ((params (frame-parameters))
             (light-bg (cdr (assq 'background-mode params)))
@@ -1376,4 +1377,4 @@ Uses `makefile-use-curly-braces-for-macros-p'."
                              "hotpink"))))
        (set-face-background 'makefile-space-face bg-color))))
 
-;;; makefile.el ends here
+;;; make-mode.el ends here