emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101250: * src/keyboard.c (Fwindow_sy


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101250: * src/keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
Date: Tue, 31 Aug 2010 21:42:39 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101250
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Tue 2010-08-31 21:42:39 +0200
message:
  * src/keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
modified:
  src/ChangeLog
  src/keyboard.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-08-31 15:39:31 +0000
+++ b/src/ChangeLog     2010-08-31 19:42:39 +0000
@@ -1,3 +1,7 @@
+2010-08-31  Stefan Monnier  <address@hidden>
+
+       * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
+
 2010-08-31  Chong Yidong  <address@hidden>
 
        * keyboard.c (command_loop_1): Don't call x-set-selection on tty.

=== modified file 'src/keyboard.c'
--- a/src/keyboard.c    2010-08-31 15:39:31 +0000
+++ b/src/keyboard.c    2010-08-31 19:42:39 +0000
@@ -1493,6 +1493,11 @@
 }
 #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)
 {


reply via email to

[Prev in Thread] Current Thread [Next in Thread]