aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fixed some compilation warningsGustav Hållberg2009-01-163-10/+11
|
* renamed _cmd_init() to initialize_cmd() and added a function prototype for itGustav Hållberg2009-01-163-2/+4
|
* changed file encoding to utf-8Gustav Hållberg2009-01-161-4/+4
|
* More version bumpsv1.2.13Steve Slaven2008-01-093-2/+8
|
* Version number bumpSteve Slaven2008-01-091-1/+1
|
* Switched to using pointers to save the last space because counters could beSteve Slaven2007-10-101-10/+14
| | | | | off if there were ansi sequences
* Version isn't a valid keywordSteve Slaven2007-10-091-1/+0
|
* Fix debian version numbersSteve Slaven2007-10-092-1/+7
|
* Version bumpv1.2.12Steve Slaven2007-10-093-4/+4
|
* This should change the option +wrap to do word wrapping instead of justSteve Slaven2007-10-091-37/+60
| | | | | line wrapping
* Don't try and load non-.so files in cmd_moduleSteve Slaven2007-10-091-0/+4
|
* This should again fix the double-free bug that was once fixed in perlwowSteve Slaven2007-03-082-3/+10
|
* Fixed version numbersSteve Slaven2006-12-072-2/+2
|
* This fixed #bind and #rebind problems, patch from kalev lemberv1.2.11Steve Slaven2006-11-081-1/+4
|
* More checks for building in cygwinSteve Slaven2006-10-201-3/+4
|
* Removed malloc.h since it's obsolete, fixed follow.c to not use tty_read_fdSteve Slaven2006-03-245-6/+1
| | | | | | since it looks like a copy-paste job that didn't get fixed and causes brokenness on bsd
* Fixed maintainer lineSteve Slaven2006-03-241-1/+1
|
* Updated debian build, bumped versionv1.2.10Steve Slaven2006-02-063-2/+9
|
* Fixed up copyright symbols and display (Dain)Steve Slaven2006-02-021-5/+5
|
* Fixes crash if non-latin-1 character is entered before connecting to aSteve Slaven2006-02-021-1/+4
| | | | | server (Dain)
* Fixes bugged #var $(expression).Steve Slaven2006-01-311-9/+27
| | | | | | | | | | | bug #1: It was possible to create variables with illegal names. bug #2: Expressions like "-30" or "+5" were incorrectly interpretted as named variables which were then completely inaccessible. bug #3: Deletion of existing named variable via #var $(expression)= caused crash. (pointer to var-node was not set) (Elestir)
* Better handling of line continuation (Elestir)Steve Slaven2006-01-311-9/+7
|
* 1. Allows empty-line matching using regexp.Steve Slaven2006-01-311-2/+3
| | | | | | | | | | | E.g.: gagging of all empty lines #action %empty ^$= 2. Fixes the bug in parameter copy for regexp actions. powwow did not set any matched regex params after finding an empty match (Elestir)
* Fixes operator . (dot) which didn't check for valid index range. (Elestir)Steve Slaven2006-01-311-1/+2
|
* Make speedwalk execute aliases if defined instead of just sendingSteve Slaven2006-01-311-1/+4
| | | | | directions (Elestir)
* Allow configuring the group delimiter to any arbitrary stringSteve Slaven2006-01-315-12/+32
|
* A patch that fixes a problem with not restoring the fcntlSteve Slaven2006-01-311-1/+9
| | | | | | | | | | flags for stdout before running a #! command. To trigger the bug in 1.2.9, just type "#! cat" and cat will die with EAGAIN. Patch by Dain
* Fix for segfault when viewing a single alias from Kalev LemberSteve Slaven2005-11-221-4/+4
| | | | | | | | | | <kalev@smartlink.ee> #alias foo=bar #alias foo Caused segfault
* This is the new config for mkdistSteve Slaven2005-11-131-0/+2
|
* These are autogenerated files and don't need to be trackedSteve Slaven2005-11-133-6999/+0
|
* Updated news in preparation for releasev1.2.9Steve Slaven2005-11-111-1/+3
|
* Added arch and maintainer to debian filesSteve Slaven2005-10-281-0/+2
|
* Added #speedwalk to documentationSteve Slaven2005-10-281-0/+8
|
* Added #speedwalk command for using speedwalks even if you haveSteve Slaven2005-10-281-1/+15
| | | | | opt_speedwalk set to off
* Updated where to send patches/bug reports in man pageSteve Slaven2005-10-271-0/+6
|
* Updated version numbers, added COPYING file to shared distSteve Slaven2005-10-279-530/+357
| | | | | to that #help copyright works
* This fixes a tiny memory leak caused by not freeing the copySteve Slaven2005-10-271-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | of a variable if used in a comparison on the left side, valgrind output: ==10477== 10 bytes in 1 blocks are definitely lost in loss record 3 of 45 ==10477== at 0x1B90459D: malloc (vg_replace_malloc.c:130) ==10477== by 0x806B08A: ptrdup2 (ptr.c:65) ==10477== by 0x806B121: ptrdup (ptr.c:80) ==10477== by 0x805C503: exe_op (eval.c:675) ==10477== by 0x805DDCF: compare_and_unload (eval.c:1279) ==10477== by 0x805DFBA: _eval (eval.c:1322) ==10477== by 0x805E0D4: eval_any (eval.c:1362) ==10477== by 0x805E43C: evall (eval.c:1446) ==10477== by 0x8052514: cmd_if (cmd.c:1884) ==10477== by 0x806536E: parse_commands (main.c:1769) ==10477== by 0x8065119: parse_instruction (main.c:1709) ==10477== by 0x806525F: parse_user_input (main.c:1735) test file: #( "Don't save the config file every time" ) #file = #if ($foo > "ho" ) #print Dwarves #if ($foo > "ho" ) #print Dwarves #if ($foo > "ho" ) #print Dwarves
* Added some casts because byte is unsigned char and some functions in mainSteve Slaven2005-10-211-2/+2
| | | | | | wanted to have signed chars, this was the previous behaviour but the compiler spit out warnings, now it shouldn't anymore.
* Fix warnings during muc compileSteve Slaven2005-09-161-0/+2
|
* Updated news and some debian control filesSteve Slaven2005-09-133-2/+13
|
* Fixed initializing default completions using new command structuresSteve Slaven2005-08-301-1/+2
|
* Added #module documentationSteve Slaven2005-06-101-0/+14
|
* Applied patch from Michael Sterrett <mr_bones_@gentoo.org> that fixesSteve Slaven2005-06-031-1/+1
| | | | | the code that locates the copyright file
* Changed some contact info to bpk@hoopajoo.net for bug reportsSteve Slaven2005-04-051-1/+2
|
* Added documentation of the #group command and line continuationSteve Slaven2005-04-051-4/+50
|
* Added line-continuation support to the #ex commandSteve Slaven2005-04-051-5/+21
|
* Updated build-process information and updated where bugs and patchesSteve Slaven2005-04-041-19/+31
| | | | | should be sent to
* Updated newsv1.2.8Steve Slaven2005-03-221-1/+2
|
* Added 1.2.8 news, fixed but in upcase/downcase word (Dain)Steve Slaven2005-03-222-15/+22
|
* Updated debian version, make #module loaded objects export their symbolsSteve Slaven2005-03-217-14/+22
| | | | | | globally (needed to allow binary xs modules in perl to get to each others symbols)