1
0
mirror of https://github.com/git/git.git synced 2024-10-21 03:28:41 +02:00

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

@ -295,6 +295,8 @@ parse_done:
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