branch: elpa/gnosis commit 9904210a74be9b6704f0a7b3c4b6e07ed63448b9 Author: Thanos Apollo <pub...@thanosapollo.org> Commit: Thanos Apollo <pub...@thanosapollo.org>
[fix] display-keimenon: Replace \n with empty space. --- gnosis.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnosis.el b/gnosis.el index a2068becee..5425aa5d7f 100644 --- a/gnosis.el +++ b/gnosis.el @@ -393,7 +393,7 @@ This will not be applied to sentences that start with double space." If FILL-PARAGRAPH-P, insert question using `fill-paragraph'." (erase-buffer) - (insert "\n" (replace-regexp-in-string "\n" "" str)) + (insert "\n" (replace-regexp-in-string "\n" " " str)) (fill-paragraph) (gnosis-insert-separator) (gnosis-apply-center-buffer-overlay)