mirror of
https://github.com/rfivet/uemacs.git
synced 2025-02-20 06:57:11 -05:00
ebind as a module instead of include in main.
This commit is contained in:
parent
72f91dd131
commit
2ed4446758
8
Makefile
8
Makefile
@ -16,19 +16,19 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
||||
|
||||
PROGRAM=ue
|
||||
|
||||
SRC=basic.c bind.c buffer.c crypt.c display.c eval.c exec.c \
|
||||
SRC=basic.c bind.c buffer.c crypt.c display.c ebind.c eval.c exec.c \
|
||||
file.c fileio.c input.c isearch.c line.c lock.c main.c \
|
||||
pklock.c posix.c random.c region.c search.c spawn.c tcap.c \
|
||||
termio.c window.c word.c names.c globals.c \
|
||||
wrapper.c utf8.c
|
||||
|
||||
OBJ=basic.o bind.o buffer.o crypt.o display.o eval.o exec.o \
|
||||
OBJ=basic.o bind.o buffer.o crypt.o display.o ebind.o eval.o exec.o \
|
||||
file.o fileio.o input.o isearch.o line.o lock.o main.o \
|
||||
pklock.o posix.o random.o region.o search.o spawn.o tcap.o \
|
||||
termio.o window.o word.o names.o globals.o \
|
||||
wrapper.o utf8.o
|
||||
|
||||
HDR=basic.h bind.h buffer.h crypt.h display.h ebind.h edef.h efunc.h \
|
||||
HDR=basic.h bind.h buffer.h crypt.h display.h edef.h efunc.h \
|
||||
estruct.h eval.h exec.h file.h fileio.h input.h isearch.h line.h \
|
||||
lock.h main.h pklock.h random.h region.h search.h spawn.h \
|
||||
termio.h utf8.h version.h window.h word.h wrapper.h
|
||||
@ -148,7 +148,7 @@ input.o: input.c input.h estruct.h edef.h
|
||||
isearch.o: isearch.c isearch.h estruct.h edef.h
|
||||
line.o: line.c line.h estruct.h edef.h
|
||||
lock.o: lock.c lock.h estruct.h edef.h
|
||||
main.o: main.c main.h estruct.h crypt.h edef.h ebind.h version.h
|
||||
main.o: main.c main.h estruct.h crypt.h edef.h version.h
|
||||
names.o: names.c estruct.h crypt.h edef.h line.h
|
||||
pklock.o: pklock.c pklock.h estruct.h
|
||||
posix.o: posix.c termio.h estruct.h utf8.h
|
||||
|
@ -1,22 +1,21 @@
|
||||
/* ebind.h
|
||||
/* ebind.c
|
||||
*
|
||||
* Initial default key to function bindings
|
||||
*
|
||||
* Modified by Petri Kutvonen
|
||||
*/
|
||||
|
||||
#ifndef EBIND_H_
|
||||
#define EBIND_H_
|
||||
|
||||
#include "basic.h"
|
||||
#include "bind.h"
|
||||
#include "buffer.h"
|
||||
#include "crypt.h"
|
||||
#include "estruct.h"
|
||||
#include "eval.h"
|
||||
#include "exec.h"
|
||||
#include "file.h"
|
||||
#include "isearch.h"
|
||||
#include "line.h"
|
||||
#include "main.h"
|
||||
#include "random.h"
|
||||
#include "region.h"
|
||||
#include "search.h"
|
||||
@ -435,5 +434,3 @@ struct key_tab keytab[NBINDS] = {
|
||||
|
||||
{0, NULL}
|
||||
};
|
||||
|
||||
#endif /* EBIND_H_ */
|
9
main.c
9
main.c
@ -67,11 +67,18 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h" /* Global structures and defines. */
|
||||
#include "edef.h" /* Global definitions. */
|
||||
#include "ebind.h" /* Default key bindings. */
|
||||
#include "input.h"
|
||||
#include "termio.h"
|
||||
#include "version.h"
|
||||
|
||||
#include "basic.h"
|
||||
#include "bind.h"
|
||||
#include "buffer.h"
|
||||
#include "eval.h"
|
||||
#include "file.h"
|
||||
#include "random.h"
|
||||
#include "search.h"
|
||||
|
||||
/* For MSDOS, increase the default stack space. */
|
||||
#if MSDOS & TURBO
|
||||
#if PKCODE
|
||||
|
Loading…
x
Reference in New Issue
Block a user