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:
committed by
Linus Torvalds
parent
8fc7449839
commit
5ffdebdbf3
4
spawn.c
4
spawn.c
@@ -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";
|
||||
|
Reference in New Issue
Block a user