1. Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
   the Untabify command.
2. Corrected "tab/space" Error Dialog to show correct menu for Untabify.
   Patch 1196980 Jeff Shute

M EditorWindow.py
M NEWS.txt
M ScriptBinding.py
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index ef825f1..3c4585b 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -1271,7 +1271,7 @@
     def _asktabwidth(self):
         return self.askinteger(
             "Tab width",
-            "Spaces per tab? (2-16)",
+            "Columns per tab? (2-16)",
             parent=self.text,
             initialvalue=self.indentwidth,
             minvalue=2,