Skip to content

Commit

Permalink
formatting tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
AllinCottrell committed Nov 27, 2024
1 parent bd3705e commit 94a387f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions gui/textbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,7 @@ void text_delete_invisibles (gchar *s)
void text_paste (GtkWidget *w, windata_t *vwin)
{
GtkClipboard *cb = gtk_clipboard_get(GDK_NONE);
gchar *src;

src = gtk_clipboard_wait_for_text(cb);
gchar *src = gtk_clipboard_wait_for_text(cb);

if (src != NULL) {
text_delete_invisibles(src);
Expand Down

0 comments on commit 94a387f

Please sign in to comment.