Index: /pyyaml/trunk/lib/yaml/emitter.py
===================================================================
--- /pyyaml/trunk/lib/yaml/emitter.py	(revision 299)
+++ /pyyaml/trunk/lib/yaml/emitter.py	(revision 300)
@@ -1008,5 +1008,5 @@
         self.write_indicator(u'"', False)
 
-    def determine_chomp(self, text):
+    def determine_block_hints(self, text):
         hints = u''
         if text and text[0] in u' \n\x85\u2028\u2029':
@@ -1074,5 +1074,5 @@
 
     def write_literal(self, text):
-        chomp = self.determine_chomp(text)
+        chomp = self.determine_block_hints(text)
         self.write_indicator(u'|'+chomp, True)
         self.write_indent()
