mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
2dd816ac63
Obtained from: OpenBSD
17 lines
647 B
Plaintext
17 lines
647 B
Plaintext
--- props.c.orig Fri Mar 18 06:13:17 1994
|
|
+++ props.c Thu Mar 16 15:46:08 2000
|
|
@@ -116,5 +116,5 @@
|
|
switch (event.type) {
|
|
case KeyPress:
|
|
- XLookupString(&event, &c_buf, 1, &last_key, &status);
|
|
+ XLookupString((XKeyEvent *) &event, &c_buf, 1, &last_key, &status);
|
|
if ((last_key == XK_q) || (last_key == XK_Q))
|
|
do_exit();
|
|
@@ -176,5 +176,5 @@
|
|
switch (event.type) {
|
|
case KeyPress:
|
|
- XLookupString(&event, &c_buf, 1, &last_key, &status);
|
|
+ XLookupString((XKeyEvent *) &event, &c_buf, 1, &last_key, &status);
|
|
if (last_key == XK_space)
|
|
if (!pause_seq())
|