libpayload: remove trailing whitespace and run dos2unix
[coreboot.git] / payloads / libpayload / curses / PDCurses-3.4 / pdcurses / deleteln.c
index c856e90a3823a3e83081b3e7925027e80b56db79..7e26d9bcde9726bf81ce7677f77eff937632f8db 100644 (file)
@@ -27,10 +27,10 @@ RCSID("$Id: deleteln.c,v 1.35 2008/07/13 16:08:18 wmcbrine Exp $")
         current line are moved up one line.  The bottom line of the
         window is cleared.  The cursor position does not change.
 
-        With the insertln() and winsertn() functions, a blank line is 
+        With the insertln() and winsertn() functions, a blank line is
         inserted above the current line and the bottom line is lost.
 
-        mvdeleteln(), mvwdeleteln(), mvinsertln() and mvwinsertln() 
+        mvdeleteln(), mvwdeleteln(), mvinsertln() and mvwinsertln()
         allow moving the cursor and inserting/deleting in one call.
 
   Return Value:
@@ -76,7 +76,7 @@ int wdeleteln(WINDOW *win)
     for (ptr = temp; (ptr - temp < win->_maxx); ptr++)
         *ptr = blank;           /* make a blank line */
 
-    if (win->_cury <= win->_bmarg) 
+    if (win->_cury <= win->_bmarg)
     {
         win->_firstch[win->_bmarg] = 0;
         win->_lastch[win->_bmarg] = win->_maxx - 1;