1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-12-19 07:46:24 -05:00

uemacs: Move function declarations from edef.h to efunc.h.

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-10-20 22:57:08 -02:00 committed by Linus Torvalds
parent da3d470b8d
commit 18342f6246
2 changed files with 5 additions and 4 deletions

4
edef.h
View File

@ -106,10 +106,6 @@ extern struct window *wheadp; /* Head of list of windows */
extern struct buffer *bheadp; /* Head of list of buffers */ extern struct buffer *bheadp; /* Head of list of buffers */
extern struct buffer *blistp; /* Buffer for C-X C-B */ extern struct buffer *blistp; /* Buffer for C-X C-B */
/* Lookup a buffer by name. */
extern struct buffer *bfind(char *bname, int cflag, int bflag);
extern struct window *wpopup(void); /* Pop up window creation. */
extern struct line *lalloc(int); /* Allocate a line. */
extern char sres[NBUFN]; /* Current screen resolution. */ extern char sres[NBUFN]; /* Current screen resolution. */
extern char pat[]; /* Search pattern. */ extern char pat[]; /* Search pattern. */
extern char tap[]; /* Reversed pattern array. */ extern char tap[]; /* Reversed pattern array. */

View File

@ -42,6 +42,7 @@ extern int ldelnewline(void);
extern void kdelete(void); extern void kdelete(void);
extern int kinsert(int c); extern int kinsert(int c);
extern int yank(int f, int n); extern int yank(int f, int n);
extern struct line *lalloc(int); /* Allocate a line. */
/* window.c */ /* window.c */
extern int reposition(int f, int n); extern int reposition(int f, int n);
@ -64,6 +65,8 @@ extern int newsize(int f, int n);
extern int newwidth(int f, int n); extern int newwidth(int f, int n);
extern int getwpos(void); extern int getwpos(void);
extern void cknewwindow(void); extern void cknewwindow(void);
extern struct window *wpopup(void); /* Pop up window creation. */
/* basic.c */ /* basic.c */
extern int gotobol(int f, int n); extern int gotobol(int f, int n);
@ -217,6 +220,8 @@ extern int addline(char *text);
extern int anycb(void); extern int anycb(void);
extern int bclear(struct buffer *bp); extern int bclear(struct buffer *bp);
extern int unmark(int f, int n); extern int unmark(int f, int n);
/* Lookup a buffer by name. */
extern struct buffer *bfind(char *bname, int cflag, int bflag);
/* file.c */ /* file.c */
extern int fileread(int f, int n); extern int fileread(int f, int n);