guile: remove save/save-as from manual

They are not currently implemented.
This commit is contained in:
djcb 2019-04-27 08:15:26 +03:00
parent d979efb9c5
commit 736ed2e0de
1 changed files with 8 additions and 8 deletions

View File

@ -657,13 +657,13 @@ if there is none.
@item @code{(mu:size <part>)} - 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 <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 <part> <path>)} - 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 <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 <part> <path>)} - 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) ""))))