X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fruby%2Fmessage.c;h=6ea82afa20c5071086883b437054d80613e7a45d;hb=a34d7b41444ad2fb50cc7def25659c88d439780a;hp=eed4b31b8045eec195e9390583f02ba54bc76928;hpb=5c00af46ec5add69b3b2750ea2a9437e5953a7b0;p=notmuch diff --git a/bindings/ruby/message.c b/bindings/ruby/message.c index eed4b31b..6ea82afa 100644 --- a/bindings/ruby/message.c +++ b/bindings/ruby/message.c @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see http://www.gnu.org/licenses/ . + * along with this program. If not, see https://www.gnu.org/licenses/ . * * Author: Ali Polatel */ @@ -111,7 +111,7 @@ notmuch_rb_message_get_filename (VALUE self) } /* - * call-seq: MESSAGE.filanames => FILENAMES + * call-seq: MESSAGE.filenames => FILENAMES * * Get all filenames for the email corresponding to MESSAGE. */ @@ -137,13 +137,18 @@ VALUE notmuch_rb_message_get_flag (VALUE self, VALUE flagv) { notmuch_message_t *message; + notmuch_bool_t is_set; + notmuch_status_t status; Data_Get_Notmuch_Message (self, message); if (!FIXNUM_P (flagv)) rb_raise (rb_eTypeError, "Flag not a Fixnum"); - return notmuch_message_get_flag (message, FIX2INT (flagv)) ? Qtrue : Qfalse; + status = notmuch_message_get_flag_st (message, FIX2INT (flagv), &is_set); + notmuch_rb_status_raise (status); + + return is_set ? Qtrue : Qfalse; } /*