]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_insdel.c
ncurses 6.2 - patch 20200816
[ncurses.git] / ncurses / base / lib_insdel.c
index 48e108de8d9b25fce3c88f681f114d935ae550a1..7c007397b0b4b55937280f44f18357d6813482a2 100644 (file)
@@ -1,5 +1,6 @@
 /****************************************************************************
 /****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc.                        *
+ * Copyright 2020 Thomas E. Dickey                                          *
+ * Copyright 1998-2003,2009 Free Software Foundation, Inc.                  *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
 
 #include <curses.priv.h>
 
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_insdel.c,v 1.8 1998/02/11 12:13:55 tom Exp $")
+MODULE_ID("$Id: lib_insdel.c,v 1.14 2020/02/02 23:34:34 tom Exp $")
 
 
-int
+NCURSES_EXPORT(int)
 winsdelln(WINDOW *win, int n)
 {
 winsdelln(WINDOW *win, int n)
 {
-int code = ERR;
+    int code = ERR;
 
 
-       T((T_CALLED("winsdel(%p,%d)"), win, n));
+    T((T_CALLED("winsdelln(%p,%d)"), (void *) win, n));
 
 
-       if (win) {
-         if (n != 0) {
-           _nc_scroll_window(win, -n, win->_cury, win->_maxy, _nc_background(win));      
+    if (win) {
+       if (n != 0) {
+           _nc_scroll_window(win, -n, win->_cury, win->_maxy,
+                             win->_nc_bkgd);
            _nc_synchook(win);
            _nc_synchook(win);
-         }
-         code = OK;
        }
        }
-       returnCode(code);
+       code = OK;
+    }
+    returnCode(code);
 }
 }