aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2003-10-05 17:23:05 +0000
committerJan Djärv2003-10-05 17:23:05 +0000
commit6dc15d9823a31247532291f07727ba6fee31680a (patch)
treee0604bc31d76398a7022afc8dce43bf18b3bf1e6 /src
parent3d8c3826b7515301b5586c6066bd5d3e4ba0a0b6 (diff)
downloademacs-6dc15d9823a31247532291f07727ba6fee31680a.tar.gz
emacs-6dc15d9823a31247532291f07727ba6fee31680a.zip
* xfns.c (Fx_send_client_event): Remove unused variable s.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/xfns.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 49ee4ad72da..74ccfc7aac8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * xfns.c (Fx_send_client_event): New function as a base for 3 * xfns.c (Fx_send_client_event): New function as a base for
4 manipulating extended window manager hints. 4 manipulating extended window manager hints.
5 (Fx_send_client_event): Remove unused variable s.
5 6
6 * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move, 7 * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
7 that function is removed. 8 that function is removed.
diff --git a/src/xfns.c b/src/xfns.c
index 6b00bfd9818..b188ee3a43d 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -4358,12 +4358,11 @@ the excessive values are ignored. */)
4358 { 4358 {
4359 Lisp_Object o = XCAR (cons); 4359 Lisp_Object o = XCAR (cons);
4360 long val; 4360 long val;
4361 char *s = 0;
4362 4361
4363 if (INTEGERP (o)) 4362 if (INTEGERP (o))
4364 val = XINT (o); 4363 val = XINT (o);
4365 else if (STRINGP (o)) 4364 else if (STRINGP (o))
4366 val = XInternAtom (dpyinfo->display, s = SDATA (o), False); 4365 val = XInternAtom (dpyinfo->display, SDATA (o), False);
4367 4366
4368 if (event.xclient.format == 8) 4367 if (event.xclient.format == 8)
4369 event.xclient.data.b[i] = (char) val; 4368 event.xclient.data.b[i] = (char) val;