emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src ChangeLog term.c


From: Chong Yidong
Subject: [Emacs-diffs] emacs/src ChangeLog term.c
Date: Wed, 22 Apr 2009 03:43:08 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/04/22 03:43:08

Modified files:
        src            : ChangeLog term.c 

Log message:
        * term.c (Ftty_display_color_p, Ftty_display_color_cells)
        (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
        (Fresume_tty): Doc fixes, replacing "terminal id" with "terminal
        object".

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7503&r2=1.7504
http://cvs.savannah.gnu.org/viewcvs/emacs/src/term.c?cvsroot=emacs&r1=1.239&r2=1.240

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7503
retrieving revision 1.7504
diff -u -b -r1.7503 -r1.7504
--- ChangeLog   21 Apr 2009 12:03:46 -0000      1.7503
+++ ChangeLog   22 Apr 2009 03:43:06 -0000      1.7504
@@ -1,3 +1,10 @@
+2009-04-22  Chong Yidong  <address@hidden>
+
+       * term.c (Ftty_display_color_p, Ftty_display_color_cells)
+       (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
+       (Fresume_tty): Doc fixes, replacing "terminal id" with "terminal
+       object".
+
 2009-04-21  Kenichi Handa  <address@hidden>
 
        * font.c (font_load_for_lface): Cancel previous change (bug#2994).

Index: term.c
===================================================================
RCS file: /sources/emacs/emacs/src/term.c,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -b -r1.239 -r1.240
--- term.c      3 Apr 2009 15:10:28 -0000       1.239
+++ term.c      22 Apr 2009 03:43:08 -0000      1.240
@@ -2097,9 +2097,9 @@
        0, 1, 0,
        doc: /* Return non-nil if the tty device TERMINAL can display colors.
 
-TERMINAL can be a terminal id, a frame or nil (meaning the selected
-frame's terminal).  This function always returns nil if TERMINAL
-is not on a tty device.  */)
+TERMINAL can be a terminal object, a frame, or nil (meaning the
+selected frame's terminal).  This function always returns nil if
+TERMINAL does not refer to a text-only terminal.  */)
      (terminal)
      Lisp_Object terminal;
 {
@@ -2115,9 +2115,9 @@
        Stty_display_color_cells, 0, 1, 0,
        doc: /* Return the number of colors supported by the tty device 
TERMINAL.
 
-TERMINAL can be a terminal id, a frame or nil (meaning the selected
-frame's terminal).  This function always returns 0 if TERMINAL
-is not on a tty device.  */)
+TERMINAL can be a terminal object, a frame, or nil (meaning the
+selected frame's terminal).  This function always returns 0 if
+TERMINAL does not refer to a text-only terminal.  */)
      (terminal)
      Lisp_Object terminal;
 {
@@ -2303,8 +2303,8 @@
        doc: /* Return the type of the tty device that TERMINAL uses.
 Returns nil if TERMINAL is not on a tty device.
 
-TERMINAL can be a terminal id, a frame or nil (meaning the selected
-frame's terminal).  */)
+TERMINAL can be a terminal object, a frame, or nil (meaning the
+selected frame's terminal).  */)
      (terminal)
      Lisp_Object terminal;
 {
@@ -2322,9 +2322,9 @@
 DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0,
        doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs 
process.
 
-TERMINAL can be a terminal id, a frame or nil (meaning the selected
-frame's terminal).  This function always returns nil if TERMINAL
-is not on a tty device.  */)
+TERMINAL can be a terminal object, a frame, or nil (meaning the
+selected frame's terminal).  This function always returns nil if
+TERMINAL is not on a tty device.  */)
      (terminal)
      Lisp_Object terminal;
 {
@@ -2343,9 +2343,9 @@
 do not really do underlining, but say that they do.  This function has
 no effect if used on a non-tty terminal.
 
-TERMINAL can be a terminal id, a frame or nil (meaning the selected
-frame's terminal).  This function always returns nil if TERMINAL
-is not on a tty device.  */)
+TERMINAL can be a terminal object, a frame or nil (meaning the
+selected frame's terminal).  This function always returns nil if
+TERMINAL does not refer to a text-only terminal.  */)
   (terminal)
      Lisp_Object terminal;
 {
@@ -2366,8 +2366,8 @@
 but input is not read from them and if they change, their display is
 not updated.
 
-TTY may be a terminal id, a frame, or nil for the terminal device of
-the currently selected frame.
+TTY may be a terminal object, a frame, or nil for the terminal device
+of the currently selected frame.
 
 This function runs `suspend-tty-functions' after suspending the
 device.  The functions are run with one arg, the id of the suspended
@@ -2442,8 +2442,8 @@
 `resume-tty' does nothing if it is called on a device that is not
 suspended.
 
-TTY may be a terminal id, a frame, or nil for the terminal device of
-the currently selected frame. */)
+TTY may be a terminal object, a frame, or nil (meaning the selected
+frame's terminal). */)
      (tty)
      Lisp_Object tty;
 {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]