Merge branch 'mb/shortlog-nongit-stdin'

* mb/shortlog-nongit-stdin:
  shortlog: warn the user when there is no input
This commit is contained in:
Junio C Hamano 2010-03-07 12:47:16 -08:00
commit 0d1f2a56b1

View file

@ -295,6 +295,8 @@ int cmd_shortlog(int argc, const char **argv, const char *prefix)
if (!nongit && !rev.pending.nr && isatty(0))
add_head_to_pending(&rev);
if (rev.pending.nr == 0) {
if (isatty(0))
fprintf(stderr, "(reading log message from standard input)\n");
read_from_stdin(&log);
}
else