Mercurial > emacs
changeset 42959:478fca8e08b4
(Ftty_display_color_cells, Ftty_display_color_p): Change the
argument name to DISPLAY. Doc fix.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 25 Jan 2002 14:08:42 +0000 |
parents | 2d81f84af342 |
children | 3d42a88083b3 |
files | src/term.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/term.c Fri Jan 25 14:04:06 2002 +0000 +++ b/src/term.c Fri Jan 25 14:08:42 2002 +0000 @@ -1976,9 +1976,9 @@ 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 @@ /* 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); }