http://bugs.winehq.org/show_bug.cgi?id=18170
Summary: regedit should accept CR-separated lines Product: Wine Version: 1.1.19 Platform: PC OS/Version: Linux Status: NEW Keywords: source, testcase Severity: normal Priority: P2 Component: programs AssignedTo: wine-bugs@winehq.org ReportedBy: fgouget@codeweavers.com
I have a program that runs regedit on a file where lines are separated by CR characters on their own (no LFs anywhere!).
On Windows XP this works but in Wine it fails as regedit considers this to be all one big line.
To reproduce one could use the following perl script to create a suitable test file: --- #!/usr/bin/perl print "REGEDIT4\r"; print "\r"; print "[HKEY_LOCAL_MACHINE\Software\Foo]\r"; print ""Name"="Val"\r"; ---