head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.22 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.20 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.18 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.16 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.14 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.12 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.10 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.8 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.6 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.4 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.2 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.2.0.6 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.4 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.2 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.1.0.26 pkgsrc-2006Q4-base:1.1 pkgsrc-2006Q3:1.1.0.24 pkgsrc-2006Q3-base:1.1 pkgsrc-2006Q2:1.1.0.22 pkgsrc-2006Q2-base:1.1 pkgsrc-2006Q1:1.1.0.20 pkgsrc-2006Q1-base:1.1 pkgsrc-2005Q4:1.1.0.18 pkgsrc-2005Q4-base:1.1 pkgsrc-2005Q3:1.1.0.16 pkgsrc-2005Q3-base:1.1 pkgsrc-2005Q2:1.1.0.14 pkgsrc-2005Q2-base:1.1 pkgsrc-2005Q1:1.1.0.12 pkgsrc-2005Q1-base:1.1 pkgsrc-2004Q4:1.1.0.10 pkgsrc-2004Q4-base:1.1 pkgsrc-2004Q3:1.1.0.8 pkgsrc-2004Q3-base:1.1 pkgsrc-2004Q2:1.1.0.6 pkgsrc-2004Q2-base:1.1 pkgsrc-2004Q1:1.1.0.4 pkgsrc-2004Q1-base:1.1 pkgsrc-2003Q4:1.1.0.2 pkgsrc-2003Q4-base:1.1; locks; strict; comment @# @; 1.3 date 2007.11.15.23.53.49; author dmcmahill; state dead; branches; next 1.2; 1.2 date 2007.01.23.02.49.23; author dmcmahill; state Exp; branches; next 1.1; 1.1 date 2003.11.05.22.31.43; author dmcmahill; state Exp; branches; next ; desc @@ 1.3 log @update to gwave-20060606 Most of the previous pkgsrc patches have been incorporated upstream (yay!). New in 20060606 - ?? New in 20051222 - full-height vertical scrollbar appears if the total height of all panels becomes larger than the window. - new panel type "jumbo" stays larger even when things get crowded - most deprecated guile calls removed. Guile 1.6 or later is now required. New in 20050928 - ALPHA RELEASE: may crash. do not rely on for production use. - handling of multi-sweep datafiles - vertical scrollbars on label/measure area in each wavepanel make handling large numbers of waveforms easier. New in 20031202 - Got docstring extraction from C source to .txt files in doc directory working again - applied submitted patch that cleans up warnings from gcc3 about multiline text strings in C code New in 20030917 - bugfixes to make the new print/plot stuff work better - path to working gnu graph found by configure is passed to scheme code @ text @$NetBSD: patch-ae,v 1.2 2007/01/23 02:49:23 dmcmahill Exp $ - fix multiline strings which newer gcc's don't like - fix __inline__ which sunpro doesn't like --- src/scwm_guile.c.orig 2002-03-27 23:07:03.000000000 -0500 +++ src/scwm_guile.c @@@@ -42,15 +42,21 @@@@ #include "dmalloc.h" #endif +#ifndef __GNUC__ +#ifndef __inline__ +#define __inline__ +#endif +#endif + extern char *prog_name; XSCM_HOOK(error_hook, "error-hook", 5, (SCM a, SCM b, SCM c, SCM d, SCM e), -"Called on all kinds of errors and exceptions. -Whenever an error or other uncaught throw occurs on any callback, -whether a hook, a mouse binding, a key binding, a menu entry, a file -being processed, or anything else, error-hook will be invoked. Each -procedure in the hook will be called with the throw arguments; these -will generally include information about the nature of the error."); +"Called on all kinds of errors and exceptions." +"Whenever an error or other uncaught throw occurs on any callback," +"whether a hook, a mouse binding, a key binding, a menu entry, a file" +"being processed, or anything else, error-hook will be invoked. Each" +"procedure in the hook will be called with the throw arguments; these" +"will generally include information about the nature of the error."); struct scwm_body_apply_data { SCM proc; @@@@ -209,12 +215,12 @@@@ scwm_safe_call7 (SCM proc, SCM arg1, SCM /* FIXDOC: We need a way to cross-reference concepts in docs. */ XSCM_CONCEPT("Hooks", -"Hooks are used throughout gwave to provide a convenient mechanism for -user callbacks on particular events. Fundamentally, a hook is just a -variable that contains a list of procedures that are called in order -when the relevant event occurs. However, several convenience macros -are provided for manipulating hooks; see `add-hook!', `remove-hook!', -`reset-hook!', and `run-hook'."); +"Hooks are used throughout gwave to provide a convenient mechanism for" +"user callbacks on particular events. Fundamentally, a hook is just a" +"variable that contains a list of procedures that are called in order" +"when the relevant event occurs. However, several convenience macros" +"are provided for manipulating hooks; see `add-hook!', `remove-hook!'," +"`reset-hook!', and `run-hook'."); static SCM run_hook_proc; @@@@ -395,11 +401,11 @@@@ scwm_handle_error (void *ARG_IGNORE(data XSCM_DEFINE(safe_load, "safe-load", 1, 0, 0, (SCM fname), -"Load file FNAME while trapping and displaying errors. -Each individual top-level-expression is evaluated separately and all -errors are trapped and displayed. You should use this procedure if -you need to make sure most of a file loads, even if it may contain -errors.") +"Load file FNAME while trapping and displaying errors." +"Each individual top-level-expression is evaluated separately and all" +"errors are trapped and displayed. You should use this procedure if" +"you need to make sure most of a file loads, even if it may contain" +"errors.") #define FUNC_NAME s_safe_load { SCM_STACKITEM stack_item; @ 1.2 log @fix this package when building with sunpro compilers @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @- gcc3-ify (multi-line strings) - be explicit about the location of graph (from plotutils) to help systems which have a graph program that doesn't work here. @ text @d3 3 d8 10 a17 1 @@@@ -45,12 +45,12 @@@@ d36 1 a36 1 @@@@ -209,12 +209,12 @@@@ scwm_safe_call7 (SCM proc, SCM arg1, SCM d55 1 a55 1 @@@@ -395,11 +395,11 @@@@ scwm_handle_error (void *ARG_IGNORE(data @