Fix example with more efficient version.
authorOlof-Joachim Frahm <olof@macrolet.net>
Sat, 9 Feb 2013 15:36:24 +0000 (16:36 +0100)
committerOlof-Joachim Frahm <olof@macrolet.net>
Sat, 9 Feb 2013 15:36:24 +0000 (16:36 +0100)
README.md

index c26fe8e..cd2a5aa 100644 (file)
--- a/README.md
+++ b/README.md
@@ -29,7 +29,8 @@ Macros make keeping track easier, so the following example is
 straightforward:
 
     > (with-inotify (inotify T ("." :all-events))
-    >   (loop (format T "~{~A~%~}" (next-events inotify))))
+    >   (do-events (event inotify :blocking-p T)
+    >     (format T "~A~%" event)))
     > =>
     > #S(CL-INOTIFY::INOTIFY-EVENT :WD 1 :MASK (CREATE) :COOKIE 0 :NAME .zshist.LOCK)
     > #S(CL-INOTIFY::INOTIFY-EVENT :WD 1 :MASK (OPEN) :COOKIE 0 :NAME .zshist)