mirror of
https://github.com/rfivet/uemacs.git
synced 2025-10-18 03:44:35 -04:00
Recompile under Cygwin64. Move color names as private to random.
This commit is contained in:
7
Makefile
7
Makefile
@@ -170,7 +170,7 @@ isearch.o: isearch.c isearch.h basic.h buffer.h crypt.h line.h utf8.h \
|
|||||||
line.o: line.c line.h utf8.h buffer.h crypt.h edef.h estruct.h retcode.h \
|
line.o: line.c line.h utf8.h buffer.h crypt.h edef.h estruct.h retcode.h \
|
||||||
log.h window.h defines.h
|
log.h window.h defines.h
|
||||||
lock.o: lock.c lock.h estruct.h retcode.h display.h edef.h buffer.h \
|
lock.o: lock.c lock.h estruct.h retcode.h display.h edef.h buffer.h \
|
||||||
crypt.h line.h utf8.h input.h pklock.h
|
crypt.h line.h utf8.h input.h
|
||||||
log.o: log.c log.h retcode.h
|
log.o: log.c log.h retcode.h
|
||||||
main.o: main.c basic.h bind.h edef.h buffer.h crypt.h line.h utf8.h \
|
main.o: main.c basic.h bind.h edef.h buffer.h crypt.h line.h utf8.h \
|
||||||
estruct.h retcode.h bindable.h display.h eval.h execute.h file.h input.h \
|
estruct.h retcode.h bindable.h display.h eval.h execute.h file.h input.h \
|
||||||
@@ -181,8 +181,7 @@ names.o: names.c names.h basic.h bind.h edef.h buffer.h crypt.h line.h \
|
|||||||
isearch.h region.h random.h search.h spawn.h window.h defines.h word.h
|
isearch.h region.h random.h search.h spawn.h window.h defines.h word.h
|
||||||
pklock.o: pklock.c pklock.h estruct.h retcode.h edef.h buffer.h crypt.h \
|
pklock.o: pklock.c pklock.h estruct.h retcode.h edef.h buffer.h crypt.h \
|
||||||
line.h utf8.h
|
line.h utf8.h
|
||||||
posix.o: posix.c termio.h estruct.h retcode.h edef.h buffer.h crypt.h \
|
posix.o: posix.c termio.h
|
||||||
line.h utf8.h
|
|
||||||
random.o: random.c random.h basic.h buffer.h crypt.h line.h utf8.h \
|
random.o: random.c random.h basic.h buffer.h crypt.h line.h utf8.h \
|
||||||
display.h estruct.h retcode.h edef.h execute.h input.h log.h search.h \
|
display.h estruct.h retcode.h edef.h execute.h input.h log.h search.h \
|
||||||
terminal.h defines.h window.h
|
terminal.h defines.h window.h
|
||||||
@@ -196,7 +195,7 @@ spawn.o: spawn.c spawn.h defines.h buffer.h crypt.h line.h utf8.h \
|
|||||||
terminal.h window.h
|
terminal.h window.h
|
||||||
tcap.o: tcap.c terminal.h defines.h display.h estruct.h retcode.h edef.h \
|
tcap.o: tcap.c terminal.h defines.h display.h estruct.h retcode.h edef.h \
|
||||||
buffer.h crypt.h line.h utf8.h termio.h
|
buffer.h crypt.h line.h utf8.h termio.h
|
||||||
termio.o: termio.c termio.h
|
termio.o: termio.c termio.h estruct.h retcode.h utf8.h
|
||||||
utf8.o: utf8.c utf8.h
|
utf8.o: utf8.c utf8.h
|
||||||
vmsvt.o: vmsvt.c estruct.h retcode.h edef.h buffer.h crypt.h line.h \
|
vmsvt.o: vmsvt.c estruct.h retcode.h edef.h buffer.h crypt.h line.h \
|
||||||
utf8.h
|
utf8.h
|
||||||
|
1
edef.h
1
edef.h
@@ -59,7 +59,6 @@ extern int abortc; /* current abort command char */
|
|||||||
|
|
||||||
extern int quotec; /* quote char during mlreply() */
|
extern int quotec; /* quote char during mlreply() */
|
||||||
extern int tabmask;
|
extern int tabmask;
|
||||||
extern char *cname[]; /* names of colors */
|
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
@@ -66,13 +66,6 @@ int abortc = CONTROL | 'G'; /* current abort command char */
|
|||||||
|
|
||||||
int quotec = 0x11; /* quote char during mlreply() */
|
int quotec = 0x11; /* quote char during mlreply() */
|
||||||
int tabmask = 0x07; /* tabulator mask */
|
int tabmask = 0x07; /* tabulator mask */
|
||||||
char *cname[] = { /* names of colors */
|
|
||||||
"BLACK", "RED", "GREEN", "YELLOW", "BLUE",
|
|
||||||
"MAGENTA", "CYAN", "WHITE"
|
|
||||||
#if PKCODE & IBMPC
|
|
||||||
, "HIGH"
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
kbdstate kbdmode = STOP; /* current keyboard macro mode */
|
kbdstate kbdmode = STOP; /* current keyboard macro mode */
|
||||||
|
8
random.c
8
random.c
@@ -24,6 +24,14 @@
|
|||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
||||||
|
static const char *cname[] = { /* names of colors */
|
||||||
|
"BLACK", "RED", "GREEN", "YELLOW", "BLUE",
|
||||||
|
"MAGENTA", "CYAN", "WHITE"
|
||||||
|
#if PKCODE & IBMPC
|
||||||
|
, "HIGH"
|
||||||
|
#endif
|
||||||
|
} ;
|
||||||
|
|
||||||
int tabsize; /* Tab size (0: use real tabs) */
|
int tabsize; /* Tab size (0: use real tabs) */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user