summaryrefslogtreecommitdiff
path: root/gtk/gtktextsegment.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2000-12-14 23:26:59 +0000
committerHavoc Pennington <hp@src.gnome.org>2000-12-14 23:26:59 +0000
commit94ec8cff934d0d5559d6474131b3682e943bbc8e (patch)
tree1e28209981e5b72a75bd7e49f88f0f673e3a6e29 /gtk/gtktextsegment.c
parent2e70f892ccf120947b4ab34a968ca4818208211d (diff)
downloadgtk+-94ec8cff934d0d5559d6474131b3682e943bbc8e.tar.gz
remove unused call to get_last_line()
2000-12-14 Havoc Pennington <hp@redhat.com> * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove unused call to get_last_line() * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER here until boxed is working (and maybe after that - we should really not gratuitously break old code) * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out specific types for font_desc and tabs args, move them to GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get fixed. Move GdkColor args to GTK_TYPE_POINTER also. * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily use GTK_TYPE_POINTER for signal signatures as a hack-around * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and PangoTabArray * gtk/gtktextlayout.c (line_display_iter_to_index): make static (line_display_index_to_iter): make static * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller to marshal a string not a boxed * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char since the UTF-8 isn't validated yet * gtk/gtktextsegment.c (char_segment_check_func): don't require lines to end in '\n' * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use forward_to_delimiters, and grapheme boundaries (gtk_text_view_delete_from_cursor): properly handle non-newline delimiters, and grapheme boundaries * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename to gtk_text_iter_forward_to_delimiters, and make it work properly if empty lines end with a character other than '\n' * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor position
Diffstat (limited to 'gtk/gtktextsegment.c')
-rw-r--r--gtk/gtktextsegment.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/gtk/gtktextsegment.c b/gtk/gtktextsegment.c
index 2a4bce96fa..e37e78ac9c 100644
--- a/gtk/gtktextsegment.c
+++ b/gtk/gtktextsegment.c
@@ -392,14 +392,7 @@ char_segment_check_func (segPtr, line)
{
char_segment_self_check (segPtr);
- if (segPtr->next == NULL)
- {
- if (segPtr->body.chars[segPtr->byte_count-1] != '\n')
- {
- g_error ("char_segment_check_func: line doesn't end with newline");
- }
- }
- else
+ if (segPtr->next != NULL)
{
if (segPtr->next->type == &gtk_text_char_type)
{