vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 321129188c0f25c07f6a218d9af81d85ab3ef38d
parent a7f22a6294264937251a3d64a3225569cd4dbf61
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Fri, 21 Aug 2020 10:57:48 +0200

text: move misplaced text_save documentation snippet

Diffstat:
Mtext.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/text.h b/text.h @@ -339,15 +339,15 @@ enum TextSaveMethod { /** * Save the whole text to the given file name. - */ -bool text_save(Text*, const char *filename); -/** - * Save the whole text to the given file name, using the specified method. * * @rst * .. note:: Equivalent to ``text_save_method(filename, TEXT_SAVE_AUTO)``. * @endrst */ +bool text_save(Text*, const char *filename); +/** + * Save the whole text to the given file name, using the specified method. + */ bool text_save_method(Text*, const char *filename, enum TextSaveMethod); /**