diff options
author | wiz <wiz@pkgsrc.org> | 2004-05-03 15:58:55 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-05-03 15:58:55 +0000 |
commit | f66acac2091abc41c2ab4e0a2368a58f2f6e032b (patch) | |
tree | dc01649f974a2bd1f2340086df1eda148ee962f6 /misc/siag/patches | |
parent | 7926991921f5d9ad97af42740418d76e12182de5 (diff) | |
download | pkgsrc-f66acac2091abc41c2ab4e0a2368a58f2f6e032b.tar.gz |
Convert to buildlink3.
Diffstat (limited to 'misc/siag/patches')
-rw-r--r-- | misc/siag/patches/patch-ab | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/misc/siag/patches/patch-ab b/misc/siag/patches/patch-ab new file mode 100644 index 00000000000..935ce2453cd --- /dev/null +++ b/misc/siag/patches/patch-ab @@ -0,0 +1,37 @@ +$NetBSD: patch-ab,v 1.5 2004/05/03 15:58:55 wiz Exp $ + +--- xsiag/window.c.orig 2003-02-28 20:06:27.000000000 +0100 ++++ xsiag/window.c +@@ -2822,8 +2822,8 @@ static void save_plugin(char *p) { + if (savematrix(p, w_list->buf, NULL)) { + printf("501 Can't save %s\n", p); + } else { +- w_list->buf->change = FALSE; printf("250 Saved +- %s\n", p); ++ w_list->buf->change = FALSE; printf("250 Saved " ++ "%s\n", p); + } + } + } +@@ -2834,8 +2834,8 @@ static void load_plugin(char *p) { + if (loadmatrix(p, w_list->buf, NULL)) { + printf("501 Can't load %s\n", p); + } else { +- w_list->buf->change = FALSE; printf("250 Loaded +- %s\n", p); ++ w_list->buf->change = FALSE; printf("250 Loaded " ++ "%s\n", p); + } + } + } +@@ -2865,8 +2865,8 @@ static void quit_plugin(char *p) { + + static void prnt_plugin(char *p) { + Widget w = w_list->ui->grid; Display *dpy = XtDisplay(w); Pixmap +- pm = MwTablePixmap(w); XFreePixmap(dpy, pm); printf("502 Can't +- print yet\n"); ++ pm = MwTablePixmap(w); XFreePixmap(dpy, pm); printf("502 Can't " ++ "print yet\n"); + } + + static struct { |