1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-26 15:04:04 -04:00

Review system() dependencies and clean up obsolete function prototypes in spawn interface.

This commit is contained in:
2019-08-07 10:19:47 +08:00
parent 70a5a6b636
commit bc11a0c913
5 changed files with 11 additions and 14 deletions

9
exec.c
View File

@@ -82,15 +82,6 @@ static int dobuf( struct buffer *bp) ;
static void freewhile( struct while_block *wp) ;
static int macarg( char *tok, int toksz) ;
void ue_system( const char *cmd) {
int ret ;
ret = system( cmd) ;
if( ret == -1) {
/* some actual handling needed here */
}
}
/*
* Execute a named command even if it is not bound.
*/