aboutsummaryrefslogtreecommitdiff
path: root/packages/patches/remove_80_char_print_limit_0.40.3.patch
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-01-10 23:00:06 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-01-10 23:00:06 +0000
commit274f61fd37250e84a1b0eb81e214754fcef1cd05 (patch)
tree37ff93279553cc1283b17c7ba6c5bf2939bf06bb /packages/patches/remove_80_char_print_limit_0.40.3.patch
parenta0f3768e3c59b30761f7b4be61f4f28e2821a11d (diff)
more patches that miller accepted
svn path=/trunk/; revision=10508
Diffstat (limited to 'packages/patches/remove_80_char_print_limit_0.40.3.patch')
-rw-r--r--packages/patches/remove_80_char_print_limit_0.40.3.patch18
1 files changed, 0 insertions, 18 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
deleted file mode 100644
index b61c15bb..00000000
--- a/packages/patches/remove_80_char_print_limit_0.40.3.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-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);
- }
- }