summary refs log tree commit diff stats
path: root/plugins/tcl
AgeCommit message (Collapse)Author
2012-11-10Another unused thingBerke Viktor
2012-11-04Use configdir instead of *xchatdir*Berke Viktor
2012-11-04Eliminate warnings due to missing includesBerke Viktor
2012-10-30Some final rebrandingBerke Viktor
2012-10-30Rebrand get_info(xchatdir) but remain compatible for Perl and PythonBerke Viktor
2012-10-30Some remaining fixesBerke Viktor
2012-10-30Rebranding for the rest of plugin*Berke Viktor
2012-10-30Rebranding for XCHAT_EAT_*Berke Viktor
2012-10-30Rebranding for XCHAT_PRI_*Berke Viktor
2012-10-30Remove hexchat-plugin.h duplicateBerke Viktor
2012-10-28Further doc relocations and conversionsBerke Viktor
2012-10-24A lot more rebrandingBerke Viktor
2012-10-21Move warning level to property sheetBerke Viktor
2012-10-13Compatibility for Automake 1.12.4+Berke Viktor
2012-10-03Revert to VS2010 part4Berke Viktor
2012-10-02Use explicit project names, output filenames depend on themBerke Viktor
2012-10-02Oops, wrong find'n'replaceBerke Viktor
2012-10-02Remove hardcoding as much as possibleBerke Viktor
2012-10-02Change platform toolset to Visual Studio 2012Berke Viktor
2012-10-02Add XP (WDK) solution as a fallback optionBerke Viktor
2012-07-27Update XChat to r1521Berke Viktor
2012-07-26Auto-load user plugins and scripts from <config>/addonsBerke Viktor
On Unix leave $(libdir)/hexchat/plugins for plugin packagers, on Windows prevent users from modifying Program Files by ignoring everything except bundled plugins
2012-07-21Use <configdir>/scripts to (auto)load Lua/Perl/Python/Tcl scriptsBerke Viktor
2012-07-21Add _AMD64_ definition for x64 builds, make Visual Studio even happierBerke Viktor
2012-07-21Add trailing backslashes to Output and Intermediate directories, make Visual ↵Berke Viktor
Studio happy
2012-07-20Eliminate some Tcl noiseBerke Viktor
2012-07-19more branding changesxhmikosr
2012-07-14Merge pull request #1 from XhmikosR/masterbviktor
Minor changes, merge as a whole for convenience, update it slightly later
2012-07-14fixed plugins using correct libdirTingPing
2012-07-14get rid of *.user files and ignore themxhmikosr
2012-07-13Rename files, delete old windows makefilesBerke Viktor
2012-07-11Rebranding on the file levelBerke Viktor
2012-06-15Add .user files and .gitignoreBerke Viktor
2012-06-15Add x64 support to the VS solutionBerke Viktor
2012-06-15LOTS of fixes to the VS solutionBerke Viktor
2012-06-10More solution fixes and add language interfacesBerke Viktor
2011-12-11initial patches for linux compatibilityBerke Viktor
2011-12-02no need for an extra newline during tcl initBerke Viktor
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24add xchat r1489berkeviktor@aol.com
2011-02-24nuke the repoberkeviktor@aol.com
2010-10-29update wdk distribution to use relative paths where possibleberkeviktor@aol.com
2010-08-24huge cleanup on build systemberkeviktor@aol.com
2010-08-16some heavy restructuring and reformattingberkeviktor@aol.com
2010-04-02move additions to own repo, so that patch contains only modificationsberkeviktor@aol.com
s="n">his->realpos - 1) { his->pos++; return ""; } } next = 0; if (his->pos < HISTORY_SIZE - 1) next = his->pos + 1; if (his->lines[next]) { his->pos = next; return his->lines[his->pos]; } return 0; } char * history_up (struct history *his, char *current_text) { int next; if (his->realpos == HISTORY_SIZE - 1) { if (his->pos == 0) return 0; } else { if (his->pos == his->realpos + 1) return 0; } next = HISTORY_SIZE - 1; if (his->pos != 0) next = his->pos - 1; if (his->lines[next]) { if ( current_text[0] && strcmp(current_text, his->lines[next]) && (!his->lines[his->pos] || strcmp(current_text, his->lines[his->pos])) && (!his->lines[his->realpos] || strcmp(current_text, his->lines[his->pos])) ) { history_add (his, current_text); } his->pos = next; return his->lines[his->pos]; } return 0; }