From 6633460801cbd8b523d70ada51357968dde1a0ae Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Tue, 1 Jul 2003 09:23:38 +0000 Subject: [PATCH] Clemens Ladisch fix some wrong section/file/reference names --- alsalisp/hello.lisp | 9 +++++++++ src/pcm/pcm_dmix.c | 2 +- src/pcm/pcm_dshare.c | 2 +- src/pcm/pcm_dsnoop.c | 4 ++-- src/pcm/pcm_share.c | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/alsalisp/hello.lisp b/alsalisp/hello.lisp index 316f3131..6bf0877f 100644 --- a/alsalisp/hello.lisp +++ b/alsalisp/hello.lisp @@ -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") diff --git a/src/pcm/pcm_dmix.c b/src/pcm/pcm_dmix.c index 0361c742..de0bb0d9 100644 --- a/src/pcm/pcm_dmix.c +++ b/src/pcm/pcm_dmix.c @@ -1093,7 +1093,7 @@ pcm.name { } \endcode -\subsection pcm_plugins_hw_funcref Function reference +\subsection pcm_plugins_dmix_funcref Function reference