1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
$NetBSD: patch-ac,v 1.1 2003/11/05 22:31:43 dmcmahill Exp $
--- src/wavewin.c.orig 2002-03-27 23:10:01.000000000 -0500
+++ src/wavewin.c
@@ -50,10 +50,10 @@
#define WAVEPANEL_JGE_HEIGHT 25
XSCM_HOOK(new_wavewin_hook,"new-wavewin-hook", 0, (),
-"This hook is invoked with no arguments when the main waveform
-window is first created.
-The main purpose of this hook is to allow creation of the
-contents of the menubar and toolbar.");
+"This hook is invoked with no arguments when the main waveform"
+"window is first created."
+"The main purpose of this hook is to allow creation of the"
+"contents of the menubar and toolbar.");
SCM wavepanel_mouse_binding[6];
@@ -99,8 +99,8 @@ GtkWidget *create_xlabel_hbox(WaveTable
/* global wtable: GtkTable widget for the main window. */
XSCM_DEFINE(wtable_start_xval, "wtable-start-xval", 0, 0, 0, (),
-"Return the X coordinate represented by the left edge of the
-displayed portion of the waveforms")
+"Return the X coordinate represented by the left edge of the"
+"displayed portion of the waveforms")
#define FUNC_NAME s_wtable_start_xval
{
return gh_double2scm(wtable->start_xval);
@@ -108,8 +108,8 @@ displayed portion of the waveforms")
#undef FUNC_NAME
XSCM_DEFINE(wtable_end_xval, "wtable-end-xval", 0, 0, 0, (),
-"Return the X coordinate represented by the right edge of the
-displayed portion of the waveforms")
+"Return the X coordinate represented by the right edge of the"
+"displayed portion of the waveforms")
#define FUNC_NAME s_wtable_end_xval
{
return gh_double2scm(wtable->end_xval);
@@ -271,8 +271,8 @@ XSCM_DEFINE(get_wavewin, "get-wavewin",
#undef FUNC_NAME
XSCM_DEFINE(get_wavewin_toolbar, "get-wavewin-toolbar", 0, 0, 0, (),
-"Return the GtkHBox object for horizontal box to contain
-function buttons or icons in the main waveform window")
+"Return the GtkHBox object for horizontal box to contain"
+"function buttons or icons in the main waveform window")
#define FUNC_NAME s_get_wavewin_toolbar
{
return sgtk_wrap_gtkobj(GTK_OBJECT(win_main_toolbar));
@@ -482,10 +482,10 @@ wavewin_delete_panel(WavePanel *dwp)
XSCM_DEFINE(wtable_insert_panel_x, "wtable-insert-panel!", 2, 1, 0,
(SCM wp, SCM minheight, SCM showlabels),
-"Add a new panel after the existing panel WP, or
-at the end if WP is #f.
-The new panel has minimum height MINHEIGHT and has visible y-labels
-unless SHOWLABELS is #f")
+"Add a new panel after the existing panel WP, or"
+"at the end if WP is #f."
+"The new panel has minimum height MINHEIGHT and has visible y-labels"
+"unless SHOWLABELS is #f")
#define FUNC_NAME s_wtable_insert_panel_x
{
WavePanel *cwp;
|