http://bugs.winehq.org/show_bug.cgi?id=2525
------- Additional Comments From julliard(a)winehq.com 2004-06-12 11:03 -------
Thanks for the trace. Could you please try current CVS, and if it still doesn't
work post a trace again?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2285
------- Additional Comments From jpakkane(a)yahoo.com 2004-06-12 10:49 -------
Tried with 20040813, and this bug still exists. A q&d test with a self-compiled
20041201 has this problem too.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2600
Summary: notepad.exe - page setup
Product: Wine
Version: 20041201
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: enhancement
Priority: P4
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: survenix(a)mailbox.hu
notepad.exe (wine-prgs-20041201)
in 'Page setup' the buttons (OK, Cancel, Help) doesn't work
(Windows XP SP2 hungarian)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2599
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-06-12 01:15 -------
This patch looks correct. Please submit it to wine patches for inclusion into CVS
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2599
Summary: It appears that tabs are not parsed properly by wcmd?
Product: Wine
Version: 20041201
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bgrayson(a)freescale.com
I am trying to install an AutoDesk viewer. It invokes a bat file that contains
the following lines:
copy ^Imsvcp71.dll ^Ieplot\*.*^M$
copy ^Imsvcr71.dll^Ieplot\*.*^M$
I added some printf's to WCMD_Copy(), which shows that it is receiving param1 of
"^Imsvcp71.dll".
In addition, from the second line, since ^I is not recognized as separating
parameters, all of that ends up in param1.
Here is a patch that at least separates the two parameters appropriately
(changes to WCMD_parse):
--- wcmdmain.c.orig Sun Dec 5 23:53:27 2004
+++ wcmdmain.c Sun Dec 5 23:53:59 2004
@@ -696,6 +696,7 @@
*q = '\0';
break;
case ' ':
+ case '\t':
s++;
break;
case '"':
@@ -713,7 +714,7 @@
case '\0':
return;
default:
- while ((*s != '\0') && (*s != ' ')) {
+ while ((*s != '\0') && (*s != ' ') && (*s != '\t')) {
if (p == 0) *p1++ = *s++;
else if (p == 1) *p2++ = *s++;
else s++;
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2433
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From puoti(a)inwind.it 2004-05-12 17:32 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2433
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From puoti(a)inwind.it 2004-05-12 17:32 -------
Winesetuptk is no longer available, as it isn't needed by wine any more.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2569
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)navi.cx 2004-05-12 16:08 -------
Fixed in CVS
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.