fix no_x11 flavor compilation; reported by naddy@.

This commit is contained in:
fgsch 2002-12-21 05:06:31 +00:00
parent 731bfd18d4
commit dfc2f63635

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-view_c,v 1.2 2002/12/17 05:50:51 fgsch Exp $
$OpenBSD: patch-view_c,v 1.3 2002/12/21 05:06:31 fgsch Exp $
--- view.c.orig Sat Oct 12 16:48:22 2002
+++ view.c Tue Dec 17 02:38:25 2002
+++ view.c Sat Dec 21 01:54:56 2002
@@ -1652,7 +1652,7 @@ void back(struct session *ses, struct f_
void selected_item(struct terminal *term, void *pitem, struct session *ses)
@ -19,12 +19,13 @@ $OpenBSD: patch-view_c,v 1.2 2002/12/17 05:50:51 fgsch Exp $
goto x;
}
if (ev->x == KBD_CLOSE){
@@ -2598,6 +2598,18 @@ void send_download(struct terminal *term
@@ -2598,6 +2598,20 @@ void send_download(struct terminal *term
query_file(ses, ses->dn_url, start_download, NULL);
}
+void copy_clipboard(struct terminal *term, void *xxx, struct session *ses)
+{
+#ifdef G
+ struct f_data_c *fd = current_frame(ses);
+ unsigned char *u;
+ if (!fd) return;
@ -33,12 +34,13 @@ $OpenBSD: patch-view_c,v 1.2 2002/12/17 05:50:51 fgsch Exp $
+ drv->set_clipboard(u);
+ mem_free(u);
+ }
+#endif
+}
+
/* open a link in a new xterm */
void send_open_in_new_xterm(struct terminal *term, void (*open_window)(struct terminal *term, unsigned char *, unsigned char *), struct session *ses)
{
@@ -2725,6 +2737,7 @@ void link_menu(struct terminal *term, vo
@@ -2725,6 +2739,7 @@ void link_menu(struct terminal *term, vo
if (!F) add_to_menu(&mi, TEXT(T_FOLLOW_LINK), "", TEXT(T_HK_FOLLOW_LINK), MENU_FUNC send_enter, NULL, 0);
if (c) add_to_menu(&mi, TEXT(T_OPEN_IN_NEW_WINDOW), c - 1 ? ">" : "", TEXT(T_HK_OPEN_IN_NEW_WINDOW), MENU_FUNC open_in_new_window, send_open_in_new_xterm, c - 1);
if (!anonymous) add_to_menu(&mi, TEXT(T_DOWNLOAD_LINK), "d", TEXT(T_HK_DOWNLOAD_LINK), MENU_FUNC send_download, NULL, 0);