Mercurial > hg
changeset 4322:38922a13101e
log: expand keyword search to full list of files
author | TK Soh <teekaysoh@yahoo.com> |
---|---|
date | Thu, 29 Mar 2007 09:28:10 -0500 |
parents | 99184c6fd88f |
children | 7843528a7922 |
files | mercurial/commands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Sat Apr 07 04:27:55 2007 -0300 +++ b/mercurial/commands.py Thu Mar 29 09:28:10 2007 -0500 @@ -1745,7 +1745,7 @@ for k in [kw.lower() for kw in opts['keyword']]: if not (k in changes[1].lower() or k in changes[4].lower() or - k in " ".join(changes[3][:20]).lower()): + k in " ".join(changes[3]).lower()): miss = 1 break if miss: