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:
4
buffer.c
4
buffer.c
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user