diff clive-0.4.0/doc/cliverc-example.conf clive-0.4.0-adi/doc/cliverc-example.conf --- clive-0.4.0/doc/cliverc-example.conf Mon Mar 15 12:44:43 2004 +++ clive-0.4.0-adi/doc/cliverc-example.conf Fri Apr 9 00:38:46 2004 @@ -5,6 +5,8 @@ # the editor variable can also be set in the $EDITOR or the $VISUAL environment # variables. But, if you do it here, clive will always use this one. +# if editor, $EDITOR, and $VISUAL are all unset, clive will use its minimal +# builtin editor. editor = /usr/bin/vi # these are the default LJ settings, and if you don't specify anything diff clive-0.4.0/src/edit.c clive-0.4.0-adi/src/edit.c --- clive-0.4.0/src/edit.c Sun Nov 30 16:07:15 2003 +++ clive-0.4.0-adi/src/edit.c Fri Apr 9 00:24:12 2004 @@ -161,7 +161,7 @@ else if (isatty(fileno(stdin))) { s = (char *)lj_malloc((size_t) LJ_SUBJECT_MAX); - puts("Subject: "); + fputs("Subject: ", stdout); if (fgets(s, LJ_SUBJECT_MAX, stdin)) { if (!chomp(s))