[SCM] snd/master: Fixed typos

umlaeute at users.alioth.debian.org umlaeute at users.alioth.debian.org
Mon Jan 25 21:10:31 UTC 2016


The following commit has been merged in the master branch:
commit 05358cdebfb06df3c608e9c89253744a5db5a6a8
Author: IOhannes m zmölnig <zmoelnig at umlautQ.umlaeute.mur.at>
Date:   Mon Jan 25 21:56:34 2016 +0100

    Fixed typos

diff --git a/debian/patches/fix-typos.diff b/debian/patches/fix-typos.diff
new file mode 100644
index 0000000..0b198bc
--- /dev/null
+++ b/debian/patches/fix-typos.diff
@@ -0,0 +1,119 @@
+Description: fixing typos
+Author: IOhannes m zmölnig
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- snd.orig/lint.scm
++++ snd/lint.scm
+@@ -2437,7 +2437,7 @@
+ 		    (code-constant? (caddr form))
+ 		    (not (real? (caddr form)))
+ 		    (eq? (cadddr form) #t))
+-	       (lint-format "~A won't create an homogenous vector" name form)))
++	       (lint-format "~A won't create an homogeneous vector" name form)))
+ 
+ 	  ((reverse list->vector vector->list list->string string->list symbol->string string->symbol number->string)
+ 	   ;; not string->number -- no point in copying a number and it's caught below
+--- snd.orig/s7.c
++++ snd/s7.c
+@@ -37117,14 +37117,14 @@
+ 
+ static s7_pointer g_is_float_vector(s7_scheme *sc, s7_pointer args)
+ {
+-  #define H_is_float_vector "(float-vector? obj) returns #t if obj is an homogenous float vector"
++  #define H_is_float_vector "(float-vector? obj) returns #t if obj is an homogeneous float vector"
+   #define Q_is_float_vector pl_bt
+   check_boolean_method(sc, s7_is_float_vector, sc->IS_FLOAT_VECTOR, args);
+ }
+ 
+ static s7_pointer g_float_vector(s7_scheme *sc, s7_pointer args)
+ {
+-  #define H_float_vector "(float-vector ...) returns an homogenous float vector whose elements are the arguments"
++  #define H_float_vector "(float-vector ...) returns an homogeneous float vector whose elements are the arguments"
+   #define Q_float_vector s7_make_circular_signature(sc, 1, 2, sc->IS_FLOAT_VECTOR, sc->IS_REAL)
+ 
+   s7_int len;
+@@ -37152,14 +37152,14 @@
+ 
+ static s7_pointer g_is_int_vector(s7_scheme *sc, s7_pointer args)
+ {
+-  #define H_is_int_vector "(int-vector? obj) returns #t if obj is an homogenous int vector"
++  #define H_is_int_vector "(int-vector? obj) returns #t if obj is an homogeneous int vector"
+   #define Q_is_int_vector pl_bt
+   check_boolean_method(sc, is_int_vector, sc->IS_INT_VECTOR, args);
+ }
+ 
+ static s7_pointer g_int_vector(s7_scheme *sc, s7_pointer args)
+ {
+-  #define H_int_vector "(int-vector ...) returns an homogenous int vector whose elements are the arguments"
++  #define H_int_vector "(int-vector ...) returns an homogeneous int vector whose elements are the arguments"
+   #define Q_int_vector s7_make_circular_signature(sc, 1, 2, sc->IS_INT_VECTOR, sc->IS_INTEGER)
+ 
+   s7_int len;
+@@ -37943,10 +37943,10 @@
+ 
+ static s7_pointer g_make_vector(s7_scheme *sc, s7_pointer args)
+ {
+-  #define H_make_vector "(make-vector len (value #f) (homogenous #f)) returns a vector of len elements initialized to value. \
++  #define H_make_vector "(make-vector len (value #f) (homogeneous #f)) returns a vector of len elements initialized to value. \
+ To create a multidimensional vector, put the dimension bounds in a list (this is to avoid ambiguities such as \
+ (make-vector 1 2) where it's not clear whether the '2' is an initial value or a dimension size).  (make-vector '(2 3) 1.0) \
+-returns a 2 dimensional vector of 6 total elements, all initialized to 1.0.  If homogenous is #t, and value is either an integer \
++returns a 2 dimensional vector of 6 total elements, all initialized to 1.0.  If homogeneous is #t, and value is either an integer \
+ or a real, the vector can only hold numbers of that type (s7_int or s7_double)."
+   #define Q_make_vector s7_make_signature(sc, 4, sc->IS_VECTOR, s7_make_signature(sc, 2, sc->IS_INTEGER, sc->IS_PAIR), sc->T, sc->IS_BOOLEAN)
+ 
+@@ -38008,7 +38008,7 @@
+ 		{
+ 		  if (s7_is_real(fill)) /* might be gmp with big_real by accident (? see above) */
+ 		    result_type = T_FLOAT_VECTOR;
+-		  else method_or_bust_with_type(sc, fill, sc->MAKE_VECTOR, args, make_string_wrapper(sc, "an integer or a real since 'homogenous' is #t"), 2);
++		  else method_or_bust_with_type(sc, fill, sc->MAKE_VECTOR, args, make_string_wrapper(sc, "an integer or a real since 'homogeneous' is #t"), 2);
+ 		}
+ 	    }
+ 	  else
+--- snd.orig/s7.html
++++ snd/s7.html
+@@ -1910,10 +1910,10 @@
+ </pre>
+ 
+ <p>make-vector also takes an optional fourth argument.  If it is #t, and the initial-value
+-is either an integer or a real, make-vector produces a homogenous vector, a vector that
++is either an integer or a real, make-vector produces a homogeneous vector, a vector that
+ can only hold elements of the same type as the initial value (either s7_int or s7_double
+ internally).  Homogenous vectors are mostly useful in conjunction with C code.  These
+-homogenous vector functions are currently built-in:
++homogeneous vector functions are currently built-in:
+ </p>
+ 
+ <pre class="indented">
+@@ -2122,7 +2122,7 @@
+ #2D<em class="bigger">(</em><em class="big">(</em>(0) (0) ((0))<em class="big">)</em> <em class="big">(</em>(0) 0 ((0))<em class="big">)</em><em class="bigger">)</em>
+ </pre>
+ 
+-<p>A similar problem afflicts homogenous vectors.  We need some reasonable way to express
++<p>A similar problem afflicts homogeneous vectors.  We need some reasonable way to express
+ such a vector even when it has more than one dimension.  My first thought was <code>#(...)#</code>,
+ but that makes <code>(let ((b1 0)) (#(1 2)#b1))</code> ambiguous.
+ </p>
+--- snd.orig/extsnd.html
++++ snd/extsnd.html
+@@ -10666,7 +10666,7 @@
+ <em class=def id="filtercontrolenvelope">filter-control-envelope</em> snd
+ </pre>
+ 
+-<p>The <a class=quiet href="snd.html#filtercontrol">filter</a> (frequency reponse) envelope (a list of breakpoints).
++<p>The <a class=quiet href="snd.html#filtercontrol">filter</a> (frequency response) envelope (a list of breakpoints).
+ </p>
+ <div class="spacer"></div>
+ 
+--- snd.orig/snd-help.c
++++ snd/snd-help.c
+@@ -1693,7 +1693,7 @@
+     filter coefficients (read-only currently)\n\
+ \n\
+   " S_filter_control_envelope " (:optional snd)\n\
+-    filter (frequency reponse) envelope\n\
++    filter (frequency response) envelope\n\
+ \n\
+   " S_filter_control_in_dB " (:optional snd)\n\
+     The filter dB button. If " PROC_TRUE ", the graph is displayed in dB.\n\
diff --git a/debian/patches/series b/debian/patches/series
index 1fbccc3..e7f63cd 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,3 +3,4 @@ manpage_warnings.diff
 gcc_warnings.diff
 support-kfreebsd-hurd.diff
 reproducible.diff
+fix-typos.diff

-- 
snd packaging



More information about the pkg-multimedia-commits mailing list