ri Oct 22 13:25:25 2004 Owen Taylor <otaylor@redhat.com>

* gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Fix
        backspacing on the empty last line of a buffer
        (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=136840,
        Dan Williams)
This commit is contained in:
Owen Taylor 2004-10-22 17:30:43 +00:00
parent 81229a1b0b
commit ad955c8196
5 changed files with 39 additions and 2 deletions

View File

@ -1,3 +1,10 @@
Fri Oct 22 13:25:25 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Fix
backspacing on the empty last line of a buffer
(https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=136840,
Dan Williams)
2004-10-22 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c: Document how to use info with text/image

View File

@ -1,3 +1,10 @@
Fri Oct 22 13:25:25 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Fix
backspacing on the empty last line of a buffer
(https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=136840,
Dan Williams)
2004-10-22 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c: Document how to use info with text/image

View File

@ -1,3 +1,10 @@
Fri Oct 22 13:25:25 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Fix
backspacing on the empty last line of a buffer
(https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=136840,
Dan Williams)
2004-10-22 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c: Document how to use info with text/image

View File

@ -1,3 +1,10 @@
Fri Oct 22 13:25:25 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Fix
backspacing on the empty last line of a buffer
(https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=136840,
Dan Williams)
2004-10-22 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c: Document how to use info with text/image

View File

@ -3423,8 +3423,17 @@ gtk_text_buffer_backspace (GtkTextBuffer *buffer,
end = *iter;
attrs = _gtk_text_buffer_get_line_log_attrs (buffer, &start, NULL);
offset = gtk_text_iter_get_line_offset (&start);
backspace_deletes_character = attrs[offset].backspace_deletes_character;
/* For no good reason, attrs is NULL for the empty last line in
* a buffer. Special case that here. (#156164)
*/
if (attrs)
{
offset = gtk_text_iter_get_line_offset (&start);
backspace_deletes_character = attrs[offset].backspace_deletes_character;
}
else
backspace_deletes_character = FALSE;
gtk_text_iter_backward_cursor_position (&start);