update patch set to fix small error
This commit is contained in:
parent
3da06d1024
commit
1a7a565a23
4 changed files with 33 additions and 7 deletions
|
|
@ -1,14 +1,14 @@
|
|||
From 84634c46b1764e0f97d6ef4685cf7e46a9c521d1 Mon Sep 17 00:00:00 2001
|
||||
From e7ee85880ce2779180bf7fbc3cf199ada495484b Mon Sep 17 00:00:00 2001
|
||||
From: Miller Puckette <msp@ucsd.edu>
|
||||
Date: Tue, 24 Aug 2021 22:02:38 -0700
|
||||
Subject: [PATCH 1/3] add m_local.h include if PD not defined
|
||||
Subject: [PATCH 1/4] add m_local.h include if PD not defined
|
||||
|
||||
---
|
||||
src/m_pd.h | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/src/m_pd.h b/src/m_pd.h
|
||||
index 18110cb1..6a18a3a2 100644
|
||||
index 59841935..edc5db30 100644
|
||||
--- a/src/m_pd.h
|
||||
+++ b/src/m_pd.h
|
||||
@@ -6,6 +6,11 @@
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
From 3f588704ada99d43f639f5b6f1af05edf9c29794 Mon Sep 17 00:00:00 2001
|
||||
From 4fc07b2f9f0429438586747309b60409586c419e Mon Sep 17 00:00:00 2001
|
||||
From: Miller Puckette <msp@ucsd.edu>
|
||||
Date: Tue, 24 Aug 2021 22:04:54 -0700
|
||||
Subject: [PATCH 2/3] fix expr to default to Pd, not Max
|
||||
Subject: [PATCH 2/4] fix expr to default to Pd, not Max
|
||||
|
||||
---
|
||||
src/x_vexp.h | 6 +++---
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
From bbd91ed103574b92de99a0d04ef23b22a2cec27f Mon Sep 17 00:00:00 2001
|
||||
From 378af9d00e6f0f8944a60a1453a1a06b8b7f9ce6 Mon Sep 17 00:00:00 2001
|
||||
From: Miller Puckette <msp@ucsd.edu>
|
||||
Date: Fri, 10 Dec 2021 21:17:37 -0800
|
||||
Subject: [PATCH 3/3] add m_local.h
|
||||
Subject: [PATCH 3/4] add m_local.h
|
||||
|
||||
---
|
||||
src/m_local.h | 7 +++++++
|
||||
|
|
|
|||
|
|
@ -0,0 +1,26 @@
|
|||
From ca00daa0c5e51ab263a4c7bf239197bdb97e3a98 Mon Sep 17 00:00:00 2001
|
||||
From: Miller Puckette <msp@ucsd.edu>
|
||||
Date: Sat, 11 Dec 2021 09:48:29 -0800
|
||||
Subject: [PATCH 4/4] fix espd-specific compile warning that generates an
|
||||
error?
|
||||
|
||||
---
|
||||
src/x_text.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/x_text.c b/src/x_text.c
|
||||
index 9bc91247..ce8e348c 100644
|
||||
--- a/src/x_text.c
|
||||
+++ b/src/x_text.c
|
||||
@@ -98,7 +98,7 @@ static void textbuf_open(t_textbuf *x)
|
||||
x, 600, 340, x->b_sym->s_name,
|
||||
sys_hostfontsize(glist_getfont(x->b_canvas),
|
||||
glist_getzoom(x->b_canvas)));
|
||||
- sprintf(buf, ".x%lx", x);
|
||||
+ sprintf(buf, ".x%lx", (unsigned long)x);
|
||||
x->b_guiconnect = guiconnect_new(&x->b_ob.ob_pd, gensym(buf));
|
||||
textbuf_senditup(x);
|
||||
}
|
||||
--
|
||||
2.33.1
|
||||
|
||||
Loading…
Reference in a new issue