A simple text editor that uses many of MSDOS EDIT's command shortcuts keybindings. Also makes a nice text editor for use with mailers like mutt.
State Changed From-To: open->closed Committed with several changes/cleanups: - you don't have to strip installed binary if `-s' install(1) flags used (${INSTALL_PROGRAM} includes it). - mkstemp(3) function used improperly in your patch - unlike mktemp(3) it's not only constructs filename for temporary file, but (and it's the difference between those two functions) opens it and returns descriptor of this file. Therefore you don't have to open this file again. RTFM. - There is no gurantee that USER variable is set, therefore you can't just replace cuserid(3) with getenv("USER"). I also made this port respecting global CFLAGS.