Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6620)
+++ /CKEditor/trunk/CHANGES.html	(revision 6621)
@@ -95,4 +95,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7304">#7304</a> : MS-Word cleanup function is not always invoked when click on "Paste From Word" button.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7359">#7359</a> : Apply block style to list item without editor focus problematic.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/6658">#6658</a> : [IE] Pasting text from MS-Word with one or more tab between list items was failing.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/7124">#7124</a> : Czech;</li>
Index: /CKEditor/trunk/_source/plugins/pastefromword/filter/default.js
===================================================================
--- /CKEditor/trunk/_source/plugins/pastefromword/filter/default.js	(revision 6620)
+++ /CKEditor/trunk/_source/plugins/pastefromword/filter/default.js	(revision 6621)
@@ -1069,5 +1069,5 @@
 
 							var listSymbol =  listSymbolNode && ( listSymbolNode.value || 'l.' ),
-								listType = listSymbol.match( /^(?:[(]?)([^\s]+?)([.)]?)$/ );
+								listType = listSymbol && listSymbol.match( /^(?:[(]?)([^\s]+?)([.)]?)$/ );
 
 							if ( listType )
