|
|
||||
|
||||
|
|
|
|||
|
Στις 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 |
|
|||
|
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 |
|
|||
|
Στις 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 |
|
|||
|
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 |
|
|||
|
Στις 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 |
|
|||
|
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. |
|
|||
|
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 |
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|