emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Chong Yidong
Subject: [Emacs-diffs] emacs/src ChangeLog terminal.c
Date: Sat, 04 Apr 2009 15:26:05 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/04/04 15:26:05

Modified files:
        src            : ChangeLog terminal.c 

Log message:
        * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
        (Fterminal_parameters, Fterminal_parameter)
        (Fset_terminal_parameter): In doc string, refer to terminal
        objects rather than terminal ids.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7468&r2=1.7469
http://cvs.savannah.gnu.org/viewcvs/emacs/src/terminal.c?cvsroot=emacs&r1=1.15&r2=1.16

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7468
retrieving revision 1.7469
diff -u -b -r1.7468 -r1.7469
--- ChangeLog   4 Apr 2009 11:32:49 -0000       1.7468
+++ ChangeLog   4 Apr 2009 15:26:03 -0000       1.7469
@@ -1,3 +1,10 @@
+2009-04-04  Chong Yidong  <address@hidden>
+
+       * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
+       (Fterminal_parameters, Fterminal_parameter)
+       (Fset_terminal_parameter): In doc string, refer to terminal
+       objects rather than terminal ids.
+
 2009-04-04  Eli Zaretskii  <address@hidden>
 
        * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call

Index: terminal.c
===================================================================
RCS file: /sources/emacs/emacs/src/terminal.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- terminal.c  8 Jan 2009 03:15:59 -0000       1.15
+++ terminal.c  4 Apr 2009 15:26:05 -0000       1.16
@@ -297,8 +297,8 @@
 
 DEFUN ("delete-terminal", Fdelete_terminal, Sdelete_terminal, 0, 2, 0,
        doc: /* Delete TERMINAL by deleting all frames on it and closing the 
terminal.
-TERMINAL may be a terminal id, a frame, or nil (meaning the selected
-frame's terminal).
+TERMINAL may be a terminal object, a frame, or nil (meaning the
+selected frame's terminal).
 
 Normally, you may not delete a display if all other displays are suspended,
 but if the second argument FORCE is non-nil, you may do so. */)
@@ -422,7 +422,7 @@
        doc: /* Return the name of the terminal device TERMINAL.
 It is not guaranteed that the returned value is unique among opened devices.
 
-TERMINAL may be a terminal id, a frame, or nil (meaning the
+TERMINAL may be a terminal object, a frame, or nil (meaning the
 selected frame's terminal). */)
   (terminal)
      Lisp_Object terminal;
@@ -476,8 +476,8 @@
 The value is a list of elements of the form (PARM . VALUE), where PARM
 is a symbol.
 
-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;
 {
@@ -488,8 +488,8 @@
 
 DEFUN ("terminal-parameter", Fterminal_parameter, Sterminal_parameter, 2, 2, 0,
        doc: /* Return TERMINAL's value for parameter PARAMETER.
-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, parameter)
      Lisp_Object terminal;
      Lisp_Object parameter;
@@ -507,8 +507,8 @@
        doc: /* Set TERMINAL's value for parameter PARAMETER to VALUE.
 Return the previous value of PARAMETER.
 
-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, parameter, value)
      Lisp_Object terminal;
      Lisp_Object parameter;




reply via email to

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