]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/ruby/filenames.c
ruby: be consistent with notmuch's coding style
[notmuch] / bindings / ruby / filenames.c
index f577173021b3755d8fcc1c03fd7c3082e6bfae65..e27859038697a5ecc07e634cf1e5711742df9376 100644 (file)
  * Destroys the filenames, freeing all resources allocated for it.
  */
 VALUE
-notmuch_rb_filenames_destroy(VALUE self)
+notmuch_rb_filenames_destroy (VALUE self)
 {
     notmuch_filenames_t *fnames;
 
-    Data_Get_Notmuch_FileNames(self, fnames);
+    Data_Get_Notmuch_FileNames (self, fnames);
 
-    notmuch_filenames_destroy(fnames);
-    DATA_PTR(self) = NULL;
+    notmuch_filenames_destroy (fnames);
+    DATA_PTR (self) = NULL;
 
     return Qnil;
 }
@@ -45,14 +45,14 @@ notmuch_rb_filenames_destroy(VALUE self)
  * parameter.
  */
 VALUE
-notmuch_rb_filenames_each(VALUE self)
+notmuch_rb_filenames_each (VALUE self)
 {
     notmuch_filenames_t *fnames;
 
-    Data_Get_Notmuch_FileNames(self, fnames);
+    Data_Get_Notmuch_FileNames (self, fnames);
 
-    for (; notmuch_filenames_valid(fnames); notmuch_filenames_move_to_next(fnames))
-        rb_yield(rb_str_new2(notmuch_filenames_get(fnames)));
+    for (; notmuch_filenames_valid (fnames); notmuch_filenames_move_to_next (fnames))
+       rb_yield (rb_str_new2 (notmuch_filenames_get (fnames)));
 
     return self;
 }