summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/goban/sgf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/goban/sgf.c b/apps/plugins/goban/sgf.c
index ad6e4a4e05..42d4da3365 100644
--- a/apps/plugins/goban/sgf.c
+++ b/apps/plugins/goban/sgf.c
@@ -788,7 +788,8 @@ redo_node_sgf_succeeded:
788 /* newlines display badly in rb->splash, so replace them 788 /* newlines display badly in rb->splash, so replace them
789 * with spaces 789 * with spaces
790 */ 790 */
791 if (comment_buffer[i] == '\n') 791 if (comment_buffer[i] == '\n' ||
792 comment_buffer[i] == '\r')
792 { 793 {
793 comment_buffer[i] = ' '; 794 comment_buffer[i] = ' ';
794 } 795 }