Show More
@@ -282,7 +282,8 b' class changesetprinter(object):' | |||
|
282 | 282 | def _showpatch(self, ctx): |
|
283 | 283 | matchfn = self._makefilematcher(ctx) |
|
284 | 284 | hunksfilterfn = self._makehunksfilter(ctx) |
|
285 | if matchfn: | |
|
285 | if not matchfn: | |
|
286 | return | |
|
286 | 287 |
|
|
287 | 288 |
|
|
288 | 289 |
|
@@ -292,9 +293,9 b' class changesetprinter(object):' | |||
|
292 | 293 |
|
|
293 | 294 |
|
|
294 | 295 |
|
|
296 | if stat and diff: | |
|
297 | self.ui.write("\n") | |
|
295 | 298 |
|
|
296 | if stat: | |
|
297 | self.ui.write("\n") | |
|
298 | 299 |
|
|
299 | 300 |
|
|
300 | 301 |
|
@@ -383,18 +384,17 b' class jsonchangeset(changesetprinter):' | |||
|
383 | 384 | for k, v in copies)) |
|
384 | 385 | |
|
385 | 386 | matchfn = self._makefilematcher(ctx) |
|
386 | if matchfn: | |
|
387 | 387 |
|
|
388 | 388 |
|
|
389 | 389 |
|
|
390 | 390 |
|
|
391 |
|
|
|
391 | if matchfn and stat: | |
|
392 | 392 |
|
|
393 | 393 |
|
|
394 | 394 |
|
|
395 | 395 |
|
|
396 | 396 |
|
|
397 |
|
|
|
397 | if matchfn and diff: | |
|
398 | 398 |
|
|
399 | 399 |
|
|
400 | 400 |
|
General Comments 0
You need to be logged in to leave comments.
Login now