]> git.eshelyaron.com Git - emacs.git/commitdiff
(Ftty_display_color_p): Accept an optional argument FRAME.
authorEli Zaretskii <eliz@gnu.org>
Sun, 2 Jan 2000 14:06:15 +0000 (14:06 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 2 Jan 2000 14:06:15 +0000 (14:06 +0000)
src/term.c

index 98d7958208f3d8c8e5b7dc691030b80c2f09c769..d4ea6a6f2f7d5a03beefb5da7f594e0863437b13 100644 (file)
@@ -2055,9 +2055,10 @@ turn_off_face (f, face_id)
 /* Return non-zero if the terminal is capable to display colors.  */
 
 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
-       0, 0, 0,
-  "Return non-nil if TTY can display colors.")
-     ()
+       0, 1, 0,
+  "Return non-nil if TTY can display colors on FRAME.")
+     (frame)
+     Lisp_Object frame;
 {
   return TN_max_colors > 0 ? Qt : Qnil;
 }