Go Back   Rhinocerus > Newsgroup > Newsgroup comp.lang.* 1 > Newsgroup comp.lang.tcl

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 08-05-2012, 03:20 PM
Georgios Petasis
Guest
 
Posts: n/a
Default Can somebody remove the extra comma from win/tclWinChan.c?

Hi all,

Can somebody who has write access to the tcl fossil repository, remove
the extra comma in win/tclWinChan.c, line 945?

Tcl fails to compile.

Thanks,

George
Reply With Quote
Alt Today
Advertising
 
and become member of Rhinocerus
Standard Sponsored Links

  #2 (permalink)  
Old 08-05-2012, 03:24 PM
Georgios Petasis
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

Στις 5/8/2012 18:20, ο/η Georgios Petasis *γραψε:
> Hi all,
>
> Can somebody who has write access to the tcl fossil repository, remove
> the extra comma in win/tclWinChan.c, line 945?
>
> Tcl fails to compile.
>
> Thanks,
>
> George


And add the missing parenthesis in win/tclWinSock.c, line 1285?

Index: win/tclWinChan.c
================================================== ================
--- win/tclWinChan.c
+++ win/tclWinChan.c
@@ -940,11 +940,11 @@
}
TclWinConvertError(err);
if (interp != (Tcl_Interp *) NULL) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
"couldn't open \"%s\": %s",
- TclGetString(pathPtr),, Tcl_PosixError(interp)));
+ TclGetString(pathPtr), Tcl_PosixError(interp)));
}
return NULL;
}

channel = NULL;

Index: win/tclWinSock.c
================================================== ================
--- win/tclWinSock.c
+++ win/tclWinSock.c
@@ -1280,11 +1280,11 @@
}

if (interp != NULL) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
"couldn't open socket: %s",
- (errorMsg ? errorMsg : Tcl_PosixError(interp)));
+ (errorMsg ? errorMsg : Tcl_PosixError(interp))));
}

if (sock != INVALID_SOCKET) {
closesocket(sock);
}

George
Reply With Quote
  #3 (permalink)  
Old 08-05-2012, 05:39 PM
Alexandre Ferrieux
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

On Aug 5, 5:24*pm, Georgios Petasis <peta...@iit.demokritos.gr> wrote:
> Στις 5/8/2012 18:20, ο/η Georgios Petasis *γραψε:
>
> > Hi all,

>
> > Can somebody who has write access to the tcl fossil repository, remove
> > the extra comma in win/tclWinChan.c, line 945?

>
> > Tcl fails to compile.

>
> > Thanks,

>
> > George

>
> And add the missing parenthesis in win/tclWinSock.c, line 1285?
>
> Index: win/tclWinChan.c
> ================================================== ================
> --- win/tclWinChan.c
> +++ win/tclWinChan.c
> @@ -940,11 +940,11 @@
> * * * * }
> * * * * TclWinConvertError(err);
> * * * * if (interp != (Tcl_Interp *) NULL) {
> * * * * * * Tcl_SetObjResult(interp, Tcl_ObjPrintf(
> * * * * * * * * * * "couldn't open \"%s\": %s",
> - * * * * * * * * * TclGetString(pathPtr),, Tcl_PosixError(interp)));
> + * * * * * * * * * TclGetString(pathPtr), Tcl_PosixError(interp)));
> * * * * }
> * * * * return NULL;
> * * * }
>
> * * * channel = NULL;
>
> Index: win/tclWinSock.c
> ================================================== ================
> --- win/tclWinSock.c
> +++ win/tclWinSock.c
> @@ -1280,11 +1280,11 @@
> * * * }
>
> * * * if (interp != NULL) {
> * * * * * Tcl_SetObjResult(interp, Tcl_ObjPrintf(
> * * * * * * * * "couldn't open socket: %s",
> - * * * * * * * (errorMsg ? errorMsg : Tcl_PosixError(interp)));
> + * * * * * * * (errorMsg ? errorMsg : Tcl_PosixError(interp))));
> * * * }
>
> * * * if (sock != INVALID_SOCKET) {
> * * * * closesocket(sock);
> * * * }
>
> George


For emergencies like that, go to the chat. There you'll find
committers around the clock.

-Alex
Reply With Quote
  #4 (permalink)  
Old 08-05-2012, 05:47 PM
Georgios Petasis
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

Στις 5/8/2012 20:39, ο/η Alexandre Ferrieux *γραψε:
> On Aug 5, 5:24 pm, Georgios Petasis <peta...@iit.demokritos.gr> wrote:
>> Στις 5/8/2012 18:20, ο/η Georgios Petasis *γραψε:
>>
>>> Hi all,

>>
>>> Can somebody who has write access to the tcl fossil repository, remove
>>> the extra comma in win/tclWinChan.c, line 945?

>>
>>> Tcl fails to compile.

>>
>>> Thanks,

>>
>>> George

>>
>> And add the missing parenthesis in win/tclWinSock.c, line 1285?
>>
>> Index: win/tclWinChan.c
>> ================================================== ================
>> --- win/tclWinChan.c
>> +++ win/tclWinChan.c
>> @@ -940,11 +940,11 @@
>> }
>> TclWinConvertError(err);
>> if (interp != (Tcl_Interp *) NULL) {
>> Tcl_SetObjResult(interp, Tcl_ObjPrintf(
>> "couldn't open \"%s\": %s",
>> - TclGetString(pathPtr),, Tcl_PosixError(interp)));
>> + TclGetString(pathPtr), Tcl_PosixError(interp)));
>> }
>> return NULL;
>> }
>>
>> channel = NULL;
>>
>> Index: win/tclWinSock.c
>> ================================================== ================
>> --- win/tclWinSock.c
>> +++ win/tclWinSock.c
>> @@ -1280,11 +1280,11 @@
>> }
>>
>> if (interp != NULL) {
>> Tcl_SetObjResult(interp, Tcl_ObjPrintf(
>> "couldn't open socket: %s",
>> - (errorMsg ? errorMsg : Tcl_PosixError(interp)));
>> + (errorMsg ? errorMsg : Tcl_PosixError(interp))));
>> }
>>
>> if (sock != INVALID_SOCKET) {
>> closesocket(sock);
>> }
>>
>> George

>
> For emergencies like that, go to the chat. There you'll find
> committers around the clock.
>
> -Alex
>


Hm, I have never used the chat, and I don't know how to even use it :-)

Regards,

George
Reply With Quote
  #5 (permalink)  
Old 08-05-2012, 06:55 PM
Alexandre Ferrieux
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

On Aug 5, 7:47*pm, Georgios Petasis <peta...@iit.demokritos.gr> wrote:
> Στις 5/8/2012 20:39, ο/η Alexandre Ferrieux *γραψε:
>
>
>
>
>
>
>
>
>
> > On Aug 5, 5:24 pm, Georgios Petasis <peta...@iit.demokritos.gr> wrote:
> >> Στις 5/8/2012 18:20, ο/η Georgios Petasis *γραψε:

>
> >>> Hi all,

>
> >>> Can somebody who has write access to the tcl fossil repository, remove
> >>> the extra comma in win/tclWinChan.c, line 945?

>
> >>> Tcl fails to compile.

>
> >>> Thanks,

>
> >>> George

>
> >> And add the missing parenthesis in win/tclWinSock.c, line 1285?

>
> >> Index: win/tclWinChan.c
> >> ================================================== ================
> >> --- win/tclWinChan.c
> >> +++ win/tclWinChan.c
> >> @@ -940,11 +940,11 @@
> >> * * * * *}
> >> * * * * *TclWinConvertError(err);
> >> * * * * *if (interp != (Tcl_Interp *) NULL) {
> >> * * * * * * *Tcl_SetObjResult(interp, Tcl_ObjPrintf(
> >> * * * * * * * * * * *"couldn't open \"%s\": %s",
> >> - * * * * * * * * * TclGetString(pathPtr),, Tcl_PosixError(interp)));
> >> + * * * * * * * * * TclGetString(pathPtr), Tcl_PosixError(interp)));
> >> * * * * *}
> >> * * * * *return NULL;
> >> * * * *}

>
> >> * * * *channel = NULL;

>
> >> Index: win/tclWinSock.c
> >> ================================================== ================
> >> --- win/tclWinSock.c
> >> +++ win/tclWinSock.c
> >> @@ -1280,11 +1280,11 @@
> >> * * * *}

>
> >> * * * *if (interp != NULL) {
> >> * * * * * *Tcl_SetObjResult(interp, Tcl_ObjPrintf(
> >> * * * * * * * * *"couldn't open socket: %s",
> >> - * * * * * * * (errorMsg ? errorMsg : Tcl_PosixError(interp)));
> >> + * * * * * * * (errorMsg ? errorMsg : Tcl_PosixError(interp))));
> >> * * * *}

>
> >> * * * *if (sock != INVALID_SOCKET) {
> >> * * * * *closesocket(sock);
> >> * * * *}

>
> >> George

>
> > For emergencies like that, go to the chat. There you'll find
> > committers around the clock.

>
> > -Alex

>
> Hm, I have never used the chat, and I don't know how to even use it :-)


http://tkchat.tcl.tk/

-Alex
Reply With Quote
  #6 (permalink)  
Old 08-06-2012, 02:42 PM
George Petasis
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

Στις 5/8/2012 21:55, ο/η Alexandre Ferrieux *γραψε:
> On Aug 5, 7:47 pm, Georgios Petasis <peta...@iit.demokritos.gr> wrote:
>> Στις 5/8/2012 20:39, ο/η Alexandre Ferrieux *γραψε:
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>> On Aug 5, 5:24 pm, Georgios Petasis <peta...@iit.demokritos.gr> wrote:
>>>> Στις 5/8/2012 18:20, ο/η Georgios Petasis *γραψε:

>>
>>>>> Hi all,

>>
>>>>> Can somebody who has write access to the tcl fossil repository, remove
>>>>> the extra comma in win/tclWinChan.c, line 945?

>>
>>>>> Tcl fails to compile.

>>
>>>>> Thanks,

>>
>>>>> George

>>
>>>> And add the missing parenthesis in win/tclWinSock.c, line 1285?

>>
>>>> Index: win/tclWinChan.c
>>>> ================================================== ================
>>>> --- win/tclWinChan.c
>>>> +++ win/tclWinChan.c
>>>> @@ -940,11 +940,11 @@
>>>> }
>>>> TclWinConvertError(err);
>>>> if (interp != (Tcl_Interp *) NULL) {
>>>> Tcl_SetObjResult(interp, Tcl_ObjPrintf(
>>>> "couldn't open \"%s\": %s",
>>>> - TclGetString(pathPtr),, Tcl_PosixError(interp)));
>>>> + TclGetString(pathPtr), Tcl_PosixError(interp)));
>>>> }
>>>> return NULL;
>>>> }

>>
>>>> channel = NULL;

>>
>>>> Index: win/tclWinSock.c
>>>> ================================================== ================
>>>> --- win/tclWinSock.c
>>>> +++ win/tclWinSock.c
>>>> @@ -1280,11 +1280,11 @@
>>>> }

>>
>>>> if (interp != NULL) {
>>>> Tcl_SetObjResult(interp, Tcl_ObjPrintf(
>>>> "couldn't open socket: %s",
>>>> - (errorMsg ? errorMsg : Tcl_PosixError(interp)));
>>>> + (errorMsg ? errorMsg : Tcl_PosixError(interp))));
>>>> }

>>
>>>> if (sock != INVALID_SOCKET) {
>>>> closesocket(sock);
>>>> }

>>
>>>> George

>>
>>> For emergencies like that, go to the chat. There you'll find
>>> committers around the clock.

>>
>>> -Alex

>>
>> Hm, I have never used the chat, and I don't know how to even use it :-)

>
> http://tkchat.tcl.tk/
>
> -Alex
>


How can I create an account? tkchat cannot create an account for me.

George
Reply With Quote
  #7 (permalink)  
Old 08-07-2012, 02:44 PM
Donal K. Fellows
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

On 06/08/2012 15:42, George Petasis wrote:
> How can I create an account? tkchat cannot create an account for me.


Try going in from the IRC side. I think that doesn't require an account
(and account creation is one of the mysteries of Jabber that I know very
little about indeed).

Donal.

Reply With Quote
  #8 (permalink)  
Old 08-08-2012, 12:17 AM
Alexandre Ferrieux
Guest
 
Posts: n/a
Default Re: Can somebody remove the extra comma from win/tclWinChan.c?

On Aug 7, 4:44*pm, "Donal K. Fellows"
<donal.k.fell...@manchester.ac.uk> wrote:
> On 06/08/2012 15:42, George Petasis wrote:
>
> > How can I create an account? tkchat cannot create an account for me.

>
> Try going in from the IRC side. I think that doesn't require an account
> (and account creation is one of the mysteries of Jabber that I know very
> little about indeed).


After some abuse, automated account creation on the XMPP side has been
disabled.
So yes, the recommended way is to start your TkChat in IRC mode, then
ask for an XMPP account there (unless you're happy with IRC, of
course).

-Alex
Reply With Quote
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT. The time now is 12:24 PM.


Copyright ©2009

LinkBacks Enabled by vBSEO 3.3.0 RC2 © 2009, Crawlability, Inc.