aboutsummaryrefslogtreecommitdiff
path: root/src/msgfile.c
AgeCommit message (Collapse)Author
2015-10-06write to canvas-local directoryHEADsvn2git-headexternals/zexyIOhannes m zmölnig
in sync with [textfile]. the previous use of canvas_makefilename() was for nuffing svn path=/trunk/externals/zexy/; revision=17574
2015-10-06use z_wrappers around sys_open/close()IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=17573
2015-08-28one-true indentationIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=17537
2015-02-18use z_close() when appropriateIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=17428
2012-12-19fixing unicode charactersIOhannes m zmölnig
now that Pd iuses UTF8, we can finally have hearts... svn path=/trunk/externals/zexy/; revision=16706
2011-12-23fixed typoIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15848
2011-12-21fixed errors detected by cppcheckIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15829
2011-10-03replaced &s_ with gensym()IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15490
2011-09-21fixed license boilerplate and UTF8 encodingIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15327
2011-09-20fixed crash when add2 to an empty bufferIOhannes m zmölnig
heopfully also fixed bug when append2 an empty buffer svn path=/trunk/externals/zexy/; revision=15318
2011-09-20sprintf formattingIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15317
2010-08-18clarified copyrightIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=13827
2009-08-03hmm, probably cleaned up code a bit...IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=11893
2009-04-27on w32 include io.h rather than unistd.hIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=11176
2009-04-09indentationIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=11001
2009-03-19fixed warningsIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=10873
2008-07-22fixed the "empty 'previous from end' bug"IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=10201
2008-04-09read as binary to avoid fighting with linefeedsIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=9687
2008-04-09changed read() to fread()IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=9686
2008-03-11updated README.txt a wee bitIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=9557
2008-02-20better error messagesIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=9463
2008-02-20fixed some bugs in msgfile;IOhannes m zmölnig
there are otheres, remaining: e.g. once you are at the "end", you cannot peek at the "previous" line svn path=/trunk/externals/zexy/; revision=9458
2007-09-06fixed crasher bug when replacing an sublist in an empty msgboxIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=8707
2007-03-14updated the zexy help-system: all reference-patches (aka help-patches) are ↵IOhannes m zmölnig
now to be found in the ./reference/ folder and are named <path>-help.pd; removed a now superfluous class_sethelpsymbol from ./src/*.c; the ./examples/ folder is currently empty but will eventually be filled with zexy real-world examples svn path=/trunk/externals/zexy/; revision=7485
2007-03-06increased the headroom for converting the buffer from the text-format to a ↵IOhannes m zmölnig
binbuf-readable one; LATER see how this is done in [textfile] svn path=/trunk/externals/zexy/; revision=7472
2007-03-06made msgfile_bang reentrantIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=7470
2006-10-10use pd_error() to make errors findable;IOhannes m zmölnig
changed behaviour of "read" message (no more appending of file to current buffer) added "read2" message (appends file to current buffer == old "read" behaviour) svn path=/trunk/externals/zexy/; revision=6091
2006-07-05added the "$$" method also for reading (though not strictly necessary);IOhannes m zmölnig
removed (#if 0) clauses svn path=/trunk/externals/zexy/; revision=5357
2006-06-27added a new writing mode: '$$' which converts occurences of "$$" to "\$", in ↵IOhannes m zmölnig
order to be able to write pd-patches which make use of arguments svn path=/trunk/externals/zexy/; revision=5306
2006-06-08fixed searchIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=5179
2006-06-07hopefully fixed a bug discovered by p8r: 1st line was not read (or rather ↵IOhannes m zmölnig
"output"); i guess this has more to do withpd>0=0.39 but you never no...; more testing needs to be done! svn path=/trunk/externals/zexy/; revision=5178
2006-04-05use unused variablesIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4815
2006-01-25removed the z_..._setup() functionIOhannes m zmölnig
made the setup_...() function in 0x7c0x7c0x7e.c non-static svn path=/trunk/externals/zexy/; revision=4494
2006-01-24fixed "help"-message on w32 (split into smaller junks to prevent crashes)IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4486
2006-01-23include <unistd.h> on non-w32 platforms (not just linux)IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4475
2006-01-23cleaned up code so we get hardly any warnings when compiling with "-Wall"IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4473
2005-10-02fixed reentrant bugIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3645
2005-06-09replaced MACOSX by __APPLE__IOhannes m zmölnig
replaced NT by __WIN32__ (defined by mingw, but NOT by msvc) svn path=/trunk/externals/zexy/; revision=3139
2005-06-08hopefully fixed a bug with not finding relative filenames (when "." was not ↵IOhannes m zmölnig
in the path) svn path=/trunk/externals/zexy/; revision=3133
2005-05-19hopefully fixed the makesource-process for other platformsIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3025
2005-03-22zexy-2.0:IOhannes m zmölnig
- use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641