mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 23:36:23 -05:00
Rebuild on Linux, rollback prototype of ffputline.
This commit is contained in:
parent
d6058046fa
commit
0071ce8f5b
19
Makefile
19
Makefile
@ -1,8 +1,8 @@
|
|||||||
# makefile for emacs, updated Mon, Jun 10, 2013 5:55:29 PM
|
# makefile for emacs, updated Tue Jun 11 09:36:56 CST 2013
|
||||||
|
|
||||||
SRC=ansi.c basic.c bind.c bindable.c buffer.c crypt.c display.c ebind.c eval.c exec.c execute.c file.c fileio.c flook.c globals.c ibmpc.c input.c isearch.c line.c lock.c main.c names.c pklock.c posix.c random.c region.c search.c spawn.c tcap.c termio.c utf8.c vmsvt.c vt52.c window.c word.c wrapper.c
|
SRC=ansi.c basic.c bindable.c bind.c buffer.c crypt.c display.c ebind.c eval.c exec.c execute.c file.c fileio.c flook.c globals.c ibmpc.c input.c isearch.c line.c lock.c main.c names.c pklock.c posix.c random.c region.c search.c spawn.c tcap.c termio.c utf8.c vmsvt.c vt52.c window.c word.c wrapper.c
|
||||||
OBJ=ansi.o basic.o bind.o bindable.o buffer.o crypt.o display.o ebind.o eval.o exec.o execute.o file.o fileio.o flook.o globals.o ibmpc.o input.o isearch.o line.o lock.o main.o names.o pklock.o posix.o random.o region.o search.o spawn.o tcap.o termio.o utf8.o vmsvt.o vt52.o window.o word.o wrapper.o
|
OBJ=ansi.o basic.o bindable.o bind.o buffer.o crypt.o display.o ebind.o eval.o exec.o execute.o file.o fileio.o flook.o globals.o ibmpc.o input.o isearch.o line.o lock.o main.o names.o pklock.o posix.o random.o region.o search.o spawn.o tcap.o termio.o utf8.o vmsvt.o vt52.o window.o word.o wrapper.o
|
||||||
HDR=basic.h bind.h bindable.h buffer.h crypt.h display.h ebind.h edef.h efunc.h estruct.h eval.h exec.h execute.h file.h fileio.h flook.h input.h isearch.h line.h lock.h names.h pklock.h random.h region.h search.h spawn.h termio.h utf8.h version.h window.h word.h wrapper.h
|
HDR=basic.h bindable.h bind.h buffer.h crypt.h display.h ebind.h edef.h efunc.h estruct.h eval.h exec.h execute.h file.h fileio.h flook.h input.h isearch.h line.h lock.h names.h pklock.h random.h region.h search.h spawn.h termio.h utf8.h version.h window.h word.h wrapper.h
|
||||||
|
|
||||||
# DO NOT ADD OR MODIFY ANY LINES ABOVE THIS -- make source creates them
|
# DO NOT ADD OR MODIFY ANY LINES ABOVE THIS -- make source creates them
|
||||||
|
|
||||||
@ -126,10 +126,10 @@ depend: ${SRC}
|
|||||||
ansi.o: ansi.c estruct.h line.h utf8.h edef.h
|
ansi.o: ansi.c estruct.h line.h utf8.h edef.h
|
||||||
basic.o: basic.c basic.h display.h estruct.h line.h utf8.h edef.h input.h \
|
basic.o: basic.c basic.h display.h estruct.h line.h utf8.h edef.h input.h \
|
||||||
random.h word.h
|
random.h word.h
|
||||||
bind.o: bind.c bind.h edef.h estruct.h line.h utf8.h bindable.h buffer.h \
|
|
||||||
display.h ebind.h exec.h file.h flook.h input.h names.h window.h
|
|
||||||
bindable.o: bindable.c bindable.h buffer.h estruct.h line.h utf8.h \
|
bindable.o: bindable.c bindable.h buffer.h estruct.h line.h utf8.h \
|
||||||
display.h edef.h file.h input.h
|
display.h edef.h file.h input.h
|
||||||
|
bind.o: bind.c bind.h edef.h estruct.h line.h utf8.h bindable.h buffer.h \
|
||||||
|
display.h ebind.h exec.h file.h flook.h input.h names.h window.h
|
||||||
buffer.o: buffer.c buffer.h estruct.h line.h utf8.h display.h edef.h \
|
buffer.o: buffer.c buffer.h estruct.h line.h utf8.h display.h edef.h \
|
||||||
file.h input.h window.h
|
file.h input.h window.h
|
||||||
crypt.o: crypt.c crypt.h estruct.h line.h utf8.h
|
crypt.o: crypt.c crypt.h estruct.h line.h utf8.h
|
||||||
@ -156,7 +156,8 @@ input.o: input.c input.h edef.h estruct.h line.h utf8.h bind.h bindable.h \
|
|||||||
isearch.o: isearch.c isearch.h basic.h display.h estruct.h line.h utf8.h \
|
isearch.o: isearch.c isearch.h basic.h display.h estruct.h line.h utf8.h \
|
||||||
edef.h input.h search.h
|
edef.h input.h search.h
|
||||||
line.o: line.c line.h utf8.h basic.h display.h estruct.h edef.h random.h
|
line.o: line.c line.h utf8.h basic.h display.h estruct.h edef.h random.h
|
||||||
lock.o: lock.c lock.h estruct.h line.h utf8.h display.h edef.h input.h
|
lock.o: lock.c lock.h estruct.h line.h utf8.h display.h edef.h input.h \
|
||||||
|
pklock.h
|
||||||
main.o: main.c basic.h bind.h edef.h estruct.h line.h utf8.h bindable.h \
|
main.o: main.c basic.h bind.h edef.h estruct.h line.h utf8.h bindable.h \
|
||||||
buffer.h display.h eval.h execute.h file.h input.h lock.h random.h \
|
buffer.h display.h eval.h execute.h file.h input.h lock.h random.h \
|
||||||
search.h termio.h version.h
|
search.h termio.h version.h
|
||||||
@ -164,7 +165,7 @@ names.o: names.c names.h basic.h bind.h edef.h estruct.h line.h utf8.h \
|
|||||||
bindable.h buffer.h display.h eval.h exec.h file.h isearch.h region.h \
|
bindable.h buffer.h display.h eval.h exec.h file.h isearch.h region.h \
|
||||||
random.h search.h spawn.h window.h word.h
|
random.h search.h spawn.h window.h word.h
|
||||||
pklock.o: pklock.c pklock.h estruct.h line.h utf8.h edef.h
|
pklock.o: pklock.c pklock.h estruct.h line.h utf8.h edef.h
|
||||||
posix.o: posix.c termio.h
|
posix.o: posix.c termio.h estruct.h line.h utf8.h edef.h
|
||||||
random.o: random.c random.h basic.h display.h estruct.h line.h utf8.h \
|
random.o: random.c random.h basic.h display.h estruct.h line.h utf8.h \
|
||||||
edef.h execute.h input.h search.h
|
edef.h execute.h input.h search.h
|
||||||
region.o: region.c region.h estruct.h line.h utf8.h display.h edef.h
|
region.o: region.c region.h estruct.h line.h utf8.h display.h edef.h
|
||||||
@ -173,7 +174,7 @@ search.o: search.c search.h estruct.h line.h utf8.h basic.h display.h \
|
|||||||
spawn.o: spawn.c spawn.h buffer.h estruct.h line.h utf8.h display.h \
|
spawn.o: spawn.c spawn.h buffer.h estruct.h line.h utf8.h display.h \
|
||||||
edef.h file.h input.h window.h
|
edef.h file.h input.h window.h
|
||||||
tcap.o: tcap.c display.h estruct.h line.h utf8.h edef.h termio.h
|
tcap.o: tcap.c display.h estruct.h line.h utf8.h edef.h termio.h
|
||||||
termio.o: termio.c termio.h estruct.h line.h utf8.h edef.h
|
termio.o: termio.c termio.h
|
||||||
utf8.o: utf8.c utf8.h
|
utf8.o: utf8.c utf8.h
|
||||||
vmsvt.o: vmsvt.c estruct.h line.h utf8.h edef.h
|
vmsvt.o: vmsvt.c estruct.h line.h utf8.h edef.h
|
||||||
vt52.o: vt52.c estruct.h line.h utf8.h edef.h
|
vt52.o: vt52.c estruct.h line.h utf8.h edef.h
|
||||||
|
4
fileio.c
4
fileio.c
@ -100,13 +100,13 @@ fio_code ffclose(void)
|
|||||||
* and the "nbuf" is its length, less the free newline. Return the status.
|
* and the "nbuf" is its length, less the free newline. Return the status.
|
||||||
* Check only at the newline.
|
* Check only at the newline.
|
||||||
*/
|
*/
|
||||||
fio_code ffputline( unsigned char *buf, int nbuf, int dosflag) {
|
fio_code ffputline( char *buf, int nbuf, int dosflag) {
|
||||||
#if CRYPT
|
#if CRYPT
|
||||||
if( is_crypted) {
|
if( is_crypted) {
|
||||||
int i ;
|
int i ;
|
||||||
|
|
||||||
for( i = 0 ; i < nbuf ; i++) {
|
for( i = 0 ; i < nbuf ; i++) {
|
||||||
unsigned char c ;
|
char c ;
|
||||||
|
|
||||||
c = buf[ i] ;
|
c = buf[ i] ;
|
||||||
myencrypt( &c, 1) ;
|
myencrypt( &c, 1) ;
|
||||||
|
2
fileio.h
2
fileio.h
@ -29,7 +29,7 @@ extern int fpayload ; /* actual length of fline content */
|
|||||||
|
|
||||||
fio_code ffclose( void) ;
|
fio_code ffclose( void) ;
|
||||||
fio_code ffgetline( void) ;
|
fio_code ffgetline( void) ;
|
||||||
fio_code ffputline( unsigned char *buf, int nbuf, int dosflag) ;
|
fio_code ffputline( char *buf, int nbuf, int dosflag) ;
|
||||||
fio_code ffropen( const char *fn) ;
|
fio_code ffropen( const char *fn) ;
|
||||||
fio_code ffwopen( const char *fn) ;
|
fio_code ffwopen( const char *fn) ;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user