]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Clemens Ladisch <clemens@ladisch.de>
authorJaroslav Kysela <perex@perex.cz>
Tue, 1 Jul 2003 09:23:38 +0000 (09:23 +0000)
committerJaroslav Kysela <perex@perex.cz>
Tue, 1 Jul 2003 09:23:38 +0000 (09:23 +0000)
fix some wrong section/file/reference names

alsalisp/hello.lisp
src/pcm/pcm_dmix.c
src/pcm/pcm_dshare.c
src/pcm/pcm_dsnoop.c
src/pcm/pcm_share.c

index 316f313166e9bfa265da3226df898194142ca9d5..6bf0877ff7ac2407bfa8c916837cec7b213de489 100644 (file)
@@ -1,3 +1,12 @@
 (princ "Hello ALSA world\n")
 (princ "One " 1 "\n")
 (princ "Two " (+ 1 1) "\n")
+
+(defun myprinc (o) (princ o))
+(myprinc "Printed via myprinc function!\n")
+
+(defun printnum (from to) (while (<= from to) (princ " " from) (setq from (+ from 1))))
+(princ "Numbers 1-10: ") (printnum 1 10) (princ "\n")
+
+(defun factorial (n) (when (> n 0) (* n (factorial (- n 1)))))
+(princ "Factorial of 10: " (factorial 10) "\n")
index 0361c7421e963c467bb4cb72ecdbd3b5fdea6d56..de0bb0d946551aede6f1a582d95fd8b2c70ad715 100644 (file)
@@ -1093,7 +1093,7 @@ pcm.name {
 }
 \endcode
 
-\subsection pcm_plugins_hw_funcref Function reference
+\subsection pcm_plugins_dmix_funcref Function reference
 
 <UL>
   <LI>snd_pcm_dmix_open()
index ec018dc2d3c35c9069d992da42dcefbd56379166..57b0e6982a0e0ca8c45afccc66535d4e982fa191 100644 (file)
@@ -885,7 +885,7 @@ pcm.name {
 }
 \endcode
 
-\subsection pcm_plugins_hw_funcref Function reference
+\subsection pcm_plugins_dshare_funcref Function reference
 
 <UL>
   <LI>snd_pcm_dshare_open()
index 6158caeefa2250e750f04a2ece644ebaad4bf387..aeb4411ebdf2a8bcd8fc27077200c9963cb5f462 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file pcm/pcm_snoop.c
+ * \file pcm/pcm_dsnoop.c
  * \ingroup PCM_Plugins
  * \brief PCM Capture Stream Snooping (dsnoop) Plugin Interface
  * \author Jaroslav Kysela <perex@suse.cz>
@@ -837,7 +837,7 @@ pcm.name {
 }
 \endcode
 
-\subsection pcm_plugins_hw_funcref Function reference
+\subsection pcm_plugins_dsnoop_funcref Function reference
 
 <UL>
   <LI>snd_pcm_dsnoop_open()
index 3d2efb8b58e124926b963048442e69ab383d2c41..088ee714e0e6474209eca13babf5bd74a3edb028 100644 (file)
@@ -1501,7 +1501,7 @@ This plugin allows sharing of multiple channels with more clients. The access
 to each channel is exlusive (samples are not mixed together). It means, if
 the channel zero is used with first client, the channel cannot be used with
 second one. If you are looking for a mixing plugin, use the
-\ref pcm_plugins_smix "smix plugin".
+\ref pcm_plugins_dmix "dmix plugin".
 
 \code
 pcm.name {