updates
[crypto.git] / apps / irssi / src / fe-text / textbuffer-view.c
index 5cc6405a68b3c8aad3fb53b69889e321d9f28826..449f20a9197860488861cd7351e68a2e61fc355d 100644 (file)
@@ -844,7 +844,7 @@ static void bookmark_check_remove(char *key, LINE_REC *line,
 static void view_bookmarks_check(TEXT_BUFFER_VIEW_REC *view, LINE_REC *line)
 {
         BOOKMARK_FIND_REC rec;
-        LINE_REC *newline;
+        LINE_REC *new_line;
        GSList *tmp;
 
         rec.remove_line = line;
@@ -855,14 +855,14 @@ static void view_bookmarks_check(TEXT_BUFFER_VIEW_REC *view, LINE_REC *line)
        if (rec.remove_list != NULL) {
                GList *pos = g_list_find(view->buffer->lines, line);
 
-               newline = pos == NULL || pos->prev == NULL ? NULL :
+               new_line = pos == NULL || pos->prev == NULL ? NULL :
                        (pos->next == NULL ? pos->prev->data :
                         pos->next->data);
                for (tmp = rec.remove_list; tmp != NULL; tmp = tmp->next) {
                        g_hash_table_remove(view->bookmarks, tmp->data);
-                       if (newline != NULL) {
+                       if (new_line != NULL) {
                                g_hash_table_insert(view->bookmarks,
-                                                   tmp->data, newline);
+                                                   tmp->data, new_line);
                        }
                }
                g_slist_free(rec.remove_list);