mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
e4d75fcc83
Not used anymore now that we return an array of strings directly. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
11 lines
299 B
C
11 lines
299 B
C
#include "defs.h"
|
|
|
|
VALUE
|
|
notmuch_rb_filenames_get (notmuch_filenames_t *fnames)
|
|
{
|
|
VALUE rb_array = rb_ary_new ();
|
|
|
|
for (; notmuch_filenames_valid (fnames); notmuch_filenames_move_to_next (fnames))
|
|
rb_ary_push (rb_array, rb_str_new2 (notmuch_filenames_get (fnames)));
|
|
return rb_array;
|
|
}
|