1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

uemacs: convert typedef struct window_t to struct window.

Signed-off-by: Thiago Farina <tfransosi@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Thiago Farina
2010-08-01 18:37:28 -03:00
committed by Linus Torvalds
parent af9710adc4
commit 81a3a0be6e
12 changed files with 63 additions and 63 deletions

View File

@@ -427,7 +427,7 @@
* the full blown redisplay is just too expensive to run for every input
* character.
*/
typedef struct window {
struct window {
struct window *w_wndp; /* Next window */
struct buffer *w_bufp; /* Buffer displayed in window */
struct line *w_linep; /* Top line in the window */
@@ -443,7 +443,7 @@ typedef struct window {
char w_fcolor; /* current forground color */
char w_bcolor; /* current background color */
#endif
} window_t;
};
#define WFFORCE 0x01 /* Window needs forced reframe */
#define WFMOVE 0x02 /* Movement from line to line */