]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 31 Aug 2010 19:42:39 +0000 (21:42 +0200)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 31 Aug 2010 19:42:39 +0000 (21:42 +0200)
src/ChangeLog
src/keyboard.c

index 27cda2b66e92933449f94d5383bfa17db49a54e5..fc98bcc11e38a78184e8a63dda4bf9bbe3841c5c 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
+
 2010-08-31  Chong Yidong  <cyd@stupidchicken.com>
 
        * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
index 46e0afc15a4b0fd597b522a0ce7fd804f79bb2fe..7b1a39403f39a5bb81c914761608afed68ba2bad 100644 (file)
@@ -1493,6 +1493,11 @@ cancel_hourglass_unwind (Lisp_Object arg)
 }
 #endif
 
+/* FIXME: This is wrong rather than test window-system, we should call
+   a new set-selection, which will then dispatch to x-set-selection, or
+   tty-set-selection, or w32-set-selection, ...  */
+EXFUN (Fwindow_system, 1);
+
 Lisp_Object
 command_loop_1 (void)
 {