]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - man/curs_clear.3x
ncurses 6.4 - patch 20230701
[ncurses.git] / man / curs_clear.3x
index ef30b0bd89df74587732c17e9d15030d58dc657a..71600b28dfb8db07eae6469a142db103e7aae388 100644 (file)
@@ -1,5 +1,5 @@
 .\"***************************************************************************
-.\" Copyright 2018-2021,2022 Thomas E. Dickey                                *
+.\" Copyright 2018-2022,2023 Thomas E. Dickey                                *
 .\" Copyright 1998-2010,2016 Free Software Foundation, Inc.                  *
 .\"                                                                          *
 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
@@ -27,8 +27,8 @@
 .\" authorization.                                                           *
 .\"***************************************************************************
 .\"
-.\" $Id: curs_clear.3x,v 1.28 2022/11/26 16:23:47 tom Exp $
-.TH curs_clear 3X 2022-11-26 "ncurses 6.4" "Library calls"
+.\" $Id: curs_clear.3x,v 1.31 2023/07/01 15:43:20 tom Exp $
+.TH curs_clear 3X 2023-07-01 "ncurses 6.4" "Library calls"
 .na
 .hy 0
 .de bP
@@ -64,7 +64,6 @@
 \fBint clrtoeol(void);\fP
 .br
 \fBint wclrtoeol(WINDOW *\fIwin\fB);\fR
-.br
 .SH DESCRIPTION
 .SS erase/werase
 The \fBerase\fP and \fBwerase\fP routines copy blanks to every
@@ -73,19 +72,16 @@ position in the window, clearing the screen.
 Blanks created by erasure have the current background rendition (as set
 by \fBwbkgdset\fP(3X)) merged into them.
 .SS clear/wclear
-.PP
 The \fBclear\fP and \fBwclear\fP routines are like \fBerase\fP and
 \fBwerase\fP, but they also call \fBclearok\fP(3X), so that the screen is
 cleared completely on the next call to \fBwrefresh\fP for that window
 and repainted from scratch.
 .SS clrtobot/wclrtobot
-.PP
 The \fBclrtobot\fP and \fBwclrtobot\fP routines erase from the cursor to the
 end of screen.
 That is, they erase all lines below the cursor in the window.
 Also, the current line to the right of the cursor, inclusive, is erased.
 .SS clrtoeol/wclrtoeol
-.PP
 The \fBclrtoeol\fP and \fBwclrtoeol\fP routines erase the current line
 to the right of the cursor, inclusive, to the end of the current line.
 .SH RETURN VALUE