mercurial/util.py
changeset 12689 c52c629ce19e
parent 12672 9b324c5e6273
child 12698 7aef77e74cf3
--- a/mercurial/util.py	Thu Oct 07 23:34:21 2010 -0500
+++ b/mercurial/util.py	Sun Oct 10 10:06:36 2010 -0500
@@ -1393,14 +1393,6 @@
                 return False
         return True
 
-def termwidth():
-    if 'COLUMNS' in os.environ:
-        try:
-            return int(os.environ['COLUMNS'])
-        except ValueError:
-            pass
-    return termwidth_()
-
 def interpolate(prefix, mapping, s, fn=None):
     """Return the result of interpolating items in the mapping into string s.