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  500 src/editor/format.c         char *stop_format_chars;
stop_format_chars  502 src/editor/format.c         if (edit_options.stop_format_chars != NULL
stop_format_chars  503 src/editor/format.c             && strchr (edit_options.stop_format_chars, t->str[0]) != NULL)
stop_format_chars  509 src/editor/format.c         if (edit_options.stop_format_chars == NULL || *edit_options.stop_format_chars == '\0')
stop_format_chars  510 src/editor/format.c             stop_format_chars = g_strdup ("\t");
stop_format_chars  512 src/editor/format.c             stop_format_chars = g_strconcat (edit_options.stop_format_chars, "\t", (char *) NULL);
stop_format_chars  515 src/editor/format.c             if (t->str[i] == '\n' && strchr (stop_format_chars, t->str[i + 1]) != NULL)
stop_format_chars  517 src/editor/format.c                 g_free (stop_format_chars);
stop_format_chars  522 src/editor/format.c         g_free (stop_format_chars);
stop_format_chars  424 src/setup.c        { "editor_stop_format_chars", &edit_options.stop_format_chars, "-+*\\,.;:&>" },