1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-24 22:24:02 -04:00

Replace "WINDOW" type with "window_t"

Starting to try to avoid name clashes with curses and friends.
This commit is contained in:
Linus Torvalds
2005-10-01 00:02:32 -07:00
parent d79d222a45
commit d66d329986
12 changed files with 65 additions and 65 deletions

View File

@@ -78,7 +78,7 @@ int nextbuffer(int f, int n)
*/
int swbuffer(BUFFER *bp)
{
register WINDOW *wp;
register window_t *wp;
if (--curbp->b_nwnd == 0) { /* Last use. */
curbp->b_dotp = curwp->w_dotp;
@@ -219,7 +219,7 @@ int namebuffer(int f, int n)
*/
int listbuffers(int f, int n)
{
register WINDOW *wp;
register window_t *wp;
register BUFFER *bp;
register int s;