diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-05 15:23:51 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-05 15:23:51 +0000 |
commit | 9d1d46f142cad4e044800490d9b5318ebf04b2fa (patch) | |
tree | a8e498f253e6c10565f22e6159326c19d6414d25 | |
parent | 197e3f9da2a1d708ed2dc8f06864f1cec03fab52 (diff) |
replaced 80 char limit on postatom() with MAXPDSTRING follow this thread: http://lists.puredata.info/pipermail/pd-list/2007-10/054514.html
svn path=/trunk/; revision=8788
-rw-r--r-- | packages/patches/remove_80_char_print_limit_0.40.3.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/patches/remove_80_char_print_limit_0.40.3.patch b/packages/patches/remove_80_char_print_limit_0.40.3.patch new file mode 100644 index 00000000..b61c15bb --- /dev/null +++ b/packages/patches/remove_80_char_print_limit_0.40.3.patch @@ -0,0 +1,18 @@ +Index: s_print.c +=================================================================== +RCS file: /cvsroot/pure-data/pd/src/s_print.c,v +retrieving revision 1.3 +diff -u -w -r1.3 s_print.c +--- s_print.c 18 May 2005 04:28:51 -0000 1.3 ++++ s_print.c 5 Oct 2007 15:15:30 -0000 +@@ -77,8 +77,8 @@ + int i; + for (i = 0; i < argc; i++) + { +- char buf[80]; +- atom_string(argv+i, buf, 80); ++ char buf[MAXPDSTRING]; ++ atom_string(argv+i, buf, MAXPDSTRING); + poststring(buf); + } + } |