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

View File

@ -657,13 +657,13 @@ if there is none.
@item @code{(mu:size <part>)} - returns the size in bytes of the mime-part @item @code{(mu:size <part>)} - returns the size in bytes of the mime-part
@end itemize @end itemize
Then, we may want to save the part to a file; this can be done using either: @c Then, we may want to save the part to a file; this can be done using either:
@itemize @c @itemize
@item @code{(mu:save part <part>)} - save a part to a temporary file, return the file @c @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, @c name@footnote{the temporary filename is a predictable procedure of (user-id,
msg-path, part-index)} @c msg-path, part-index)}
@item @code{(mu:save-as <part> <path>)} - save part to file at path @c @item @code{(mu:save-as <part> <path>)} - save part to file at path
@end itemize @c @end itemize
@node Attachment example @node Attachment example
@section Attachment example @section Attachment example
@ -980,7 +980,7 @@ own scripts.
(if (= n 0) 0 (/ len n))) (if (= n 0) 0 (/ len n)))
;; this gives a rational, exact result; ;; this gives a rational, exact result;
;; use exact->inexact to get decimals ;; use exact->inexact to get decimals
;; we we can make this short with the mu:average (with (mu stats)) ;; we we can make this short with the mu:average (with (mu stats))
(mu:average (lambda (msg) (string-length (or (mu:subject msg) "")))) (mu:average (lambda (msg) (string-length (or (mu:subject msg) ""))))