diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
commit | 0d98f1227110082e9e507ca236458f6c363e25b6 (patch) | |
tree | 297f74782436a0f973b6b89d60c10f399af9a135 /audio/nas/files/patch-ad | |
parent | Remove comment about not being able to undefine a variable, as we *can* (diff) |
This commit was manufactured by cvs2svn to create tag 'RELENG_2_0_5_ALPHA'.release/2.0.5a
Diffstat (limited to 'audio/nas/files/patch-ad')
-rw-r--r-- | audio/nas/files/patch-ad | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/audio/nas/files/patch-ad b/audio/nas/files/patch-ad deleted file mode 100644 index 6e9fe4a45c5c..000000000000 --- a/audio/nas/files/patch-ad +++ /dev/null @@ -1,55 +0,0 @@ -*** clients/audio/auedit/Graph.c.orig Thu Apr 7 11:19:00 1994 ---- clients/audio/auedit/Graph.c Sun Nov 6 17:16:59 1994 -*************** -*** 27,33 **** - * $NCDId: @(#)Graph.c,v 1.10 1994/04/07 18:19:00 greg Exp $ - */ - -! #include <values.h> - #include <X11/IntrinsicP.h> - #include <X11/StringDefs.h> - #include "GraphP.h" ---- 27,33 ---- - * $NCDId: @(#)Graph.c,v 1.10 1994/04/07 18:19:00 greg Exp $ - */ - -! #include <limits.h> - #include <X11/IntrinsicP.h> - #include <X11/StringDefs.h> - #include "GraphP.h" -*************** -*** 318,325 **** - - for (x = 0; x < (int) w->core.width; x++) - { -! minY = MAXSHORT; -! maxY = -MAXSHORT; - - for (; (int) k == x && p < end; k += w->graph.hscale) - { ---- 318,325 ---- - - for (x = 0; x < (int) w->core.width; x++) - { -! minY = SHRT_MAX; -! maxY = SHRT_MIN; - - for (; (int) k == x && p < end; k += w->graph.hscale) - { -*************** -*** 387,393 **** - GraphWidget w; - { - w->graph.vscale = (float) w->core.height / w->graph.numTracks / -! (MAXSHORT - -MAXSHORT + 1); - - w->graph.hscale = (float) ((int) w->core.width - 1) / - (w->graph.end - w->graph.start); ---- 387,393 ---- - GraphWidget w; - { - w->graph.vscale = (float) w->core.height / w->graph.numTracks / -! (SHRT_MAX - SHRT_MIN + 1); - - w->graph.hscale = (float) ((int) w->core.width - 1) / - (w->graph.end - w->graph.start); |