From 739f02076479f4e3fd1e05c74e4bbab9c2609ff2 Mon Sep 17 00:00:00 2001 From: Jakub Sitnicki Date: Sat, 5 Mar 2016 18:55:14 +0100 Subject: [PATCH] Update calls to mu:get-parts after name change In commit 8e3fbe380ec0 mu:get-parts was renamed to mu:c:get-parts but get-parts method was not updated. Fix it. --- guile/mu.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guile/mu.scm b/guile/mu.scm index 0da93325..08eae1fa 100644 --- a/guile/mu.scm +++ b/guile/mu.scm @@ -99,7 +99,7 @@ (define mu:c:log) (define mu:warning) (define mu:c:log) - (define mu:get-parts)) + (define mu:c:get-parts)) (define (mu:log-warning frm . args) "Log FRM with ARGS at warning." @@ -297,7 +297,7 @@ only get the part with file names." #:name (list-ref part 2) #:mime-type (list-ref part 3) #:size (list-ref part 4))) - (mu:get-parts (slot-ref msg 'msg) files-only))) + (mu:c:get-parts (slot-ref msg 'msg) files-only))) (define-method (mu:attachments (msg )) "Get the attachments for MSG as a list of objects."