stop_format_chars  101 src/editor/edit.c     .stop_format_chars = NULL,
stop_format_chars   57 src/editor/edit.h     char *stop_format_chars;
stop_format_chars  112 src/editor/format.c     return (edit_options.stop_format_chars != NULL
stop_format_chars  113 src/editor/format.c             && strchr (edit_options.stop_format_chars, c) != NULL);
stop_format_chars  501 src/editor/format.c         char *stop_format_chars;
stop_format_chars  503 src/editor/format.c         if (edit_options.stop_format_chars != NULL
stop_format_chars  504 src/editor/format.c             && strchr (edit_options.stop_format_chars, t->str[0]) != NULL)
stop_format_chars  510 src/editor/format.c         if (edit_options.stop_format_chars == NULL || *edit_options.stop_format_chars == '\0')
stop_format_chars  511 src/editor/format.c             stop_format_chars = g_strdup ("\t");
stop_format_chars  513 src/editor/format.c             stop_format_chars = g_strconcat (edit_options.stop_format_chars, "\t", (char *) NULL);
stop_format_chars  516 src/editor/format.c             if (t->str[i] == '\n' && strchr (stop_format_chars, t->str[i + 1]) != NULL)
stop_format_chars  518 src/editor/format.c                 g_free (stop_format_chars);
stop_format_chars  523 src/editor/format.c         g_free (stop_format_chars);
stop_format_chars  411 src/setup.c        { "editor_stop_format_chars", &edit_options.stop_format_chars, "-+*\\,.;:&>" },