1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-25 14:44:01 -04:00

uemacs: remove typdef struct BUFFER -> struct buffer.

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-02-15 21:09:42 -05:00
committed by Linus Torvalds
parent 8fc7449839
commit 5ffdebdbf3
13 changed files with 64 additions and 64 deletions

View File

@@ -258,7 +258,7 @@ int pipecmd(int f, int n)
{
register int s; /* return status from CLI */
register window_t *wp; /* pointer to new window */
register BUFFER *bp; /* pointer to buffer to zot */
register struct buffer *bp; /* pointer to buffer to zot */
char line[NLINE]; /* command line send to shell */
static char bname[] = "command";
@@ -379,7 +379,7 @@ int pipecmd(int f, int n)
int filter_buffer(int f, int n)
{
register int s; /* return status from CLI */
register BUFFER *bp; /* pointer to buffer to zot */
register struct buffer *bp; /* pointer to buffer to zot */
char line[NLINE]; /* command line send to shell */
char tmpnam[NFILEN]; /* place to store real file name */
static char bname1[] = "fltinp";