X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=f1a4936e6de06e9df95abcff13966f09faa8705e;hb=e93857e0338c2a71794db2b57e3659bbe6946240;hp=b584c0b5c78b9b771017e3157a1396f6022a37e6;hpb=db2b1501c7ef5912183d51340740dd4bd2ee45ac;p=pspp-builds.git diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index b584c0b5..f1a4936e 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -22,7 +22,7 @@ #include #include "syntax-editor.h" #include "psppire-var-store.h" -#include +#include #include "comments-dialog.h" @@ -244,27 +244,27 @@ generate_syntax (const struct comment_dialog *cd) for (i = 0 ; i < gtk_text_buffer_get_line_count (buffer) ; ++i ) { - struct string line; - GtkTextIter start, end; - gtk_text_buffer_get_iter_at_line (buffer, &start, i); - - end = start; + struct string tmp; + GtkTextIter start; + char *line; - gtk_text_iter_forward_to_line_end (&end); - - if ( gtk_text_iter_ends_line (&start)) - ds_init_cstr (&line, ""); + gtk_text_buffer_get_iter_at_line (buffer, &start, i); + if (gtk_text_iter_ends_line (&start)) + line = g_strdup (""); else - ds_init_cstr (&line, - gtk_text_buffer_get_text (buffer, - &start, &end, - FALSE)); + { + GtkTextIter end = start; + gtk_text_iter_forward_to_line_end (&end); + line = gtk_text_buffer_get_text (buffer, &start, &end, FALSE); + } - gen_quoted_string (&line); + ds_init_empty (&tmp); + syntax_gen_string (&tmp, ss_cstr (line)); + g_free (line); - g_string_append_printf (str, " %s\n", ds_cstr (&line)); + g_string_append_printf (str, " %s\n", ds_cstr (&tmp)); - ds_destroy (&line); + ds_destroy (&tmp); } g_string_append (str, " .\n");