From: Eli Zaretskii Date: Fri, 25 Jan 2002 14:08:42 +0000 (+0000) Subject: (Ftty_display_color_cells, Ftty_display_color_p): Change the X-Git-Tag: ttn-vms-21-2-B4~16972 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99fdd6bcfa202f9a72027f019d276ae818eb9337;p=emacs.git (Ftty_display_color_cells, Ftty_display_color_p): Change the argument name to DISPLAY. Doc fix. --- diff --git a/src/term.c b/src/term.c index 2edee999b6c..48c107a8c89 100644 --- a/src/term.c +++ b/src/term.c @@ -1976,9 +1976,9 @@ turn_off_face (f, face_id) DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p, 0, 1, 0, - doc: /* Return non-nil if TTY can display colors on FRAME. */) - (frame) - Lisp_Object frame; + doc: /* Return non-nil if TTY can display colors on DISPLAY. */) + (display) + Lisp_Object display; { return TN_max_colors > 0 ? Qt : Qnil; } @@ -1986,9 +1986,9 @@ DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p, /* Return the number of supported colors. */ DEFUN ("tty-display-color-cells", Ftty_display_color_cells, Stty_display_color_cells, 0, 1, 0, - "Return the number of colors supported by TTY on FRAME.") - (frame) - Lisp_Object frame; + doc: /* Return the number of colors supported by TTY on DISPLAY. */) + (display) + Lisp_Object display; { return make_number (TN_max_colors); }