diff src/org/tmatesoft/hg/internal/Internals.java @ 711:a62079bc422b

Keyword filtering that doesn't depend on input buffer size and the way input lines got split between filter() calls. KewordFilter got state to keep processed suspicious ...$ lines
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 11 Oct 2013 21:35:41 +0200
parents b4242b7e7dfe
children 661e77dc88ba
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/internal/Internals.java	Mon Oct 07 01:56:05 2013 +0200
+++ b/src/org/tmatesoft/hg/internal/Internals.java	Fri Oct 11 21:35:41 2013 +0200
@@ -409,7 +409,7 @@
 		ConfigFile configFile = readConfiguration(repo.getSessionContext());
 		// last one, overrides anything else
 		// <repo>/.hg/hgrc
-		configFile.addLocation(getFileFromRepoDir("hgrc"));
+		configFile.addLocation(getRepositoryFile(HgRepositoryFiles.RepoConfig));
 		return configFile;
 	}