From 736ed2e0deba5b167a84c79569d16b72a359a9a1 Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 27 Apr 2019 08:15:26 +0300 Subject: [PATCH] guile: remove save/save-as from manual They are not currently implemented. --- guile/mu-guile.texi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/guile/mu-guile.texi b/guile/mu-guile.texi index be34077b..0f16a703 100644 --- a/guile/mu-guile.texi +++ b/guile/mu-guile.texi @@ -657,13 +657,13 @@ if there is none. @item @code{(mu:size )} - returns the size in bytes of the mime-part @end itemize -Then, we may want to save the part to a file; this can be done using either: -@itemize -@item @code{(mu:save part )} - save a part to a temporary file, return the file -name@footnote{the temporary filename is a predictable procedure of (user-id, -msg-path, part-index)} -@item @code{(mu:save-as )} - save part to file at path -@end itemize +@c Then, we may want to save the part to a file; this can be done using either: +@c @itemize +@c @item @code{(mu:save part )} - save a part to a temporary file, return the file +@c name@footnote{the temporary filename is a predictable procedure of (user-id, +@c msg-path, part-index)} +@c @item @code{(mu:save-as )} - save part to file at path +@c @end itemize @node Attachment example @section Attachment example @@ -980,7 +980,7 @@ own scripts. (if (= n 0) 0 (/ len n))) ;; this gives a rational, exact result; ;; use exact->inexact to get decimals - + ;; we we can make this short with the mu:average (with (mu stats)) (mu:average (lambda (msg) (string-length (or (mu:subject msg) ""))))