From: <ebl...@us...> - 2007-02-25 03:19:30
|
Revision: 18194 http://svn.sourceforge.net/gaim/?rev=18194&view=rev Author: eblanton Date: 2007-02-24 19:19:08 -0800 (Sat, 24 Feb 2007) Log Message: ----------- Missed one line from Dossy's patches -- binding the actual savedstatus command. Modified Paths: -------------- trunk/libgaim/plugins/tcl/tcl.c Modified: trunk/libgaim/plugins/tcl/tcl.c =================================================================== --- trunk/libgaim/plugins/tcl/tcl.c 2007-02-25 03:03:11 UTC (rev 18193) +++ trunk/libgaim/plugins/tcl/tcl.c 2007-02-25 03:19:08 UTC (rev 18194) @@ -136,6 +136,7 @@ Tcl_CreateObjCommand(interp, "::gaim::notify", tcl_cmd_notify, (ClientData)NULL, NULL); Tcl_CreateObjCommand(interp, "::gaim::prefs", tcl_cmd_prefs, (ClientData)NULL, NULL); Tcl_CreateObjCommand(interp, "::gaim::presence", tcl_cmd_presence, (ClientData)NULL, NULL); + Tcl_CreateObjCommand(interp, "::gaim::savedstatus", tcl_cmd_savedstatus, (ClientData)NULL, NULL); Tcl_CreateObjCommand(interp, "::gaim::send_im", tcl_cmd_send_im, (ClientData)NULL, NULL); Tcl_CreateObjCommand(interp, "::gaim::signal", tcl_cmd_signal, (ClientData)NULL, NULL); Tcl_CreateObjCommand(interp, "::gaim::status", tcl_cmd_status, (ClientData)NULL, NULL); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |