Description: Upstream changes introduced in version 20090213-2
 This patch has been created by dpkg-source during the package build.
 Here's the last changelog entry, hopefully it gives details on why
 those changes were made:
 .
 gwave (20090213-2) unstable; urgency=low
 .
   * Switch to source format 3.0 (quilt).
   * debian/control:
     + Bumped Standards-Version to 3.8.3, no changes needed.
     + Added myself to uploaders.
     + Build-Depend on debhelper (>= 7.0.50~).
     + Added Homepage field.
     + Fix from Ubuntu: add dependency on guile-gnome2-gtk to fix segfault at
       launch (Closes: #522674)
     + Remove guile-gnome2-gtk from Build-Depends.
     + Added dependency on ${misc:Depends}
     + Remove libreadline5-dev from Build-Depends (Closes: #553780).
     + Added Vcs-* fields.
     + Enhanced extended description.
     + Added Recommends: extra-xdg-menus
   * debian/compat: Bumped compat level to 7
   * Added debian/gwave.install and debian/gwave.examples
   * debian/rules: Simplified rules file.
   * debian/gwave.desktop:
     + Remove Encoding key.
     + Use Name, GenericName and Comment fields from an old Ubuntu patch.
   * Added patch 01_fix_ascii_import_locale.diff to fix LC_NUMERIC issue
     importing ASCII files. Thanks to Peter Clifton <pcjc2@cam.ac.uk>.
     (LP: #482748)
   * debian/copyright: Rewrite in machine-readable format.
 .
 The person named in the Author field signed this changelog entry.
Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>
Bug-Debian: http://bugs.debian.org/522674
Bug-Debian: http://bugs.debian.org/553780
Bug-Ubuntu: https://bugs.launchpad.net/bugs/482748

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- /dev/null
+++ gwave-20090213/scheme/cmds.doc
@@ -0,0 +1,79 @@
+Procedure: x-zoom-full!
+Zoom the x axis to show the entire independent-variable
+range used by all displayed waveforms.
+Snarfed from cmds.scm:25
+
+Procedure: x-zoom-area!
+Prompt the user to select a range along the x axis with the mouse,
+and then zoom in so that the selected range fills the entire displayed
+X axis.
+Snarfed from cmds.scm:30
+
+Procedure: y-zoom-range!
+Prompt the user to select with the mouse a range along the Y axis of
+a particular wavepanel, and then vertically zoom that wavepanel
+so that the selected range fills its entire displayed Y axis.
+Snarfed from cmds.scm:36
+
+Procedure: y-zoom-fullauto! wp
+Restore a WavePanel to display the full range of Y values,
+and to automaticly rescale as VisibleWaves are added and deleted.
+Snarfed from cmds.scm:43
+
+Procedure: xy-zoom-area!
+Prompt the user to select a rectangular region of a WavePanel, and
+then zoom in both X and Y so that the selected area fills the whole
+window.
+Snarfed from cmds.scm:47
+
+Procedure: x-zoom-relative! zf
+zoom the display's X axis relative to current configuration.
+if the zoom factor is greater than 1, we zoom in.
+if the zoom factor is less than 1, we zoom out.
+Snarfed from cmds.scm:56
+
+Procedure: show-about-window!
+Create and show a top-level window with the "about" information
+Snarfed from cmds.scm:119
+
+Procedure: show-zoom-dialog! wp
+Pop up a dialog box to enter new axis limits (zoom setting) for a wavepanel.
+Snarfed from cmds.scm:123
+
+Procedure: set-all-measurements! mno mfunc
+Call set-visiblewave-measure! on all visiblewaves
+to set the function for measurement number MNO to MFUNC.
+Snarfed from cmds.scm:162
+
+Procedure: find-wavefile name
+Given a filename, return the GWDataFile object associated with
+the data loaded from that file, or #f it there is no such file loaded.
+Snarfed from cmds.scm:203
+
+Procedure: find-or-load-wavefile name
+locate a already-loaded wavefile by name, and if that fails,
+try to load it.  If that fails too, return #f.
+Snarfed from cmds.scm:208
+
+Procedure: write-filerestore-script df fname
+Write out a guile script that when executed by a future gwave,
+will restore the configuration of waves displayed from 
+one particular datafile.
+Snarfed from cmds.scm:213
+
+Procedure: write-allrestore-script sname
+Write out a guile script that when executed by a future gwave,
+will restore the configuration of all currently-displayed waves.
+Snarfed from cmds.scm:219
+
+Procedure: execute-script fname
+execute a guile script, ignoring any errors.
+Snarfed from cmds.scm:301
+
+Procedure: apply-script-to-file fname dfile
+execute a a guile script that was saved by a
+call to write-filerestore-script, 
+passing it the name of an alternate data file to load in place of the
+file specified in the script.
+Snarfed from cmds.scm:309
+
--- /dev/null
+++ gwave-20090213/scheme/export.doc
@@ -0,0 +1,17 @@
+Procedure: register-plotfilter name dproc eproc
+Register a new plot-filter module to appear in the plot dialog box.
+plot filter modules will call this to register themselves.
+Snarfed from export.scm:21
+
+Procedure: export-variables-to-file f vwlist . ext
+Export the data from a list of visiblewaves to a named file.
+Snarfed from export.scm:35
+
+Procedure: popup-export-dialog wvlist
+Pop up the plotting dialog box
+Snarfed from export.scm:39
+
+Procedure: subprocess-to-file f cmd arglist
+run a command in a subprocess, redirecting its output to a named file.
+Snarfed from export.scm:177
+
