]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor comment fix.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 22 Apr 2009 03:37:30 +0000 (03:37 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 22 Apr 2009 03:37:30 +0000 (03:37 +0000)
src/terminal.c

index f9001bbad384ca8f53459bfa20c12a542a552dfb..d9951dba464bd176f71697ae9e9c9c56c3098599 100644 (file)
@@ -190,10 +190,10 @@ ins_del_lines (struct frame *f, int vpos, int n)
 
 \f
 
-/* 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 @@ get_terminal (Lisp_Object terminal, int throw)
 
   if (TERMINALP (terminal))
     result = XTERMINAL (terminal);
-
   else if (FRAMEP (terminal))
-    {
-      result = FRAME_TERMINAL (XFRAME (terminal));
-    }
+    result = FRAME_TERMINAL (XFRAME (terminal));
 
   if (result && !result->name)
     result = NULL;