emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/src terminal.c


From: Chong Yidong
Subject: [Emacs-diffs] emacs/src terminal.c
Date: Wed, 22 Apr 2009 03:37:31 +0000

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

Modified files:
        src            : terminal.c 

Log message:
        Minor comment fix.

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

Patches:
Index: terminal.c
===================================================================
RCS file: /sources/emacs/emacs/src/terminal.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- terminal.c  4 Apr 2009 15:26:05 -0000       1.16
+++ terminal.c  22 Apr 2009 03:37:30 -0000      1.17
@@ -190,10 +190,10 @@
 
 
 
-/* Return the terminal object specified by TERMINAL.  TERMINAL may be a
-   terminal id, a frame, or nil for the terminal device of the current
-   frame.  If THROW is zero, return NULL for failure, otherwise throw
-   an error.  */
+/* Return the terminal object specified by TERMINAL.  TERMINAL may be
+   a terminal object, a frame, or nil for the terminal device of the
+   current frame.  If THROW is zero, return NULL for failure,
+   otherwise throw an error.  */
 
 struct terminal *
 get_terminal (Lisp_Object terminal, int throw)
@@ -205,11 +205,8 @@
 
   if (TERMINALP (terminal))
     result = XTERMINAL (terminal);
-
   else if (FRAMEP (terminal))
-    {
       result = FRAME_TERMINAL (XFRAME (terminal));
-    }
 
   if (result && !result->name)
     result = NULL;




reply via email to

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