Indentation.
authorOlof-Joachim Frahm <olof@macrolet.net>
Fri, 29 Mar 2013 00:27:50 +0000 (01:27 +0100)
committerOlof-Joachim Frahm <olof@macrolet.net>
Fri, 29 Mar 2013 00:29:19 +0000 (01:29 +0100)
package.lisp

index f67fc85..743ee14 100644 (file)
   (:use #:cl #:cffi)
   (:import-from #:osicat-posix #:defsyscall)
   (:export ;;; used types for documentation
-          #:inotify-add/read-flag
-          #:inotify-read-flag
-          #:inotify-add-flag
+           #:inotify-add/read-flag
+           #:inotify-read-flag
+           #:inotify-add-flag
 
-          ;;; very raw
-          #:read-raw-event-from-stream
+           ;;; very raw
+           #:read-raw-event-from-stream
 
-          ;;; basic stuff
-          #:close-inotify
+           ;;; basic stuff
+           #:close-inotify
 
-          ;;; inotify accessors
-          #:inotify-fd
-          #:inotify-stream
-          #:inotify-nonblocking
+           ;;; inotify accessors
+           #:inotify-fd
+           #:inotify-stream
+           #:inotify-nonblocking
 
-          ;;; event parsing functions
-          #:make-unregistered-inotify
-          #:read-event-from-stream
-          #:watch-raw
-          #:unwatch-raw
+           ;;; event parsing functions
+           #:make-unregistered-inotify
+           #:read-event-from-stream
+           #:watch-raw
+           #:unwatch-raw
 
-          ;;; event accessors
-          #:inotify-event-wd
-          #:inotify-event-mask
-          #:inotify-event-cookie
-          #:inotify-event-name
+           ;;; event accessors
+           #:inotify-event-wd
+           #:inotify-event-mask
+           #:inotify-event-cookie
+           #:inotify-event-name
 
-          ;;; enhanced functionality
-          #:make-inotify
-          #:pathname-handle/flags
-          #:event-pathname/flags
-          #:watch
-          #:unwatch
-          #:event-availablep
-          #:read-event
-          #:next-event
+           ;;; enhanced functionality
+           #:make-inotify
+           #:pathname-handle/flags
+           #:event-pathname/flags
+           #:watch
+           #:unwatch
+           #:event-availablep
+           #:read-event
+           #:next-event
 
-          ;;; convenience functions
-          #:list-watched
-          #:do-events
-          #:next-events
+           ;;; convenience functions
+           #:list-watched
+           #:do-events
+           #:next-events
 
-          ;;; macros
-          #:with-inotify
-          #:with-unregistered-inotify)
+           ;;; macros
+           #:with-inotify
+           #:with-unregistered-inotify)
   (:documentation "A binding (not only?) for the LINUX inotify(7) API."))