diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-08-31 21:42:39 +0200 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-08-31 21:42:39 +0200 |
commit | b819f760b16314638fb374e73eeb0fba3c60b5c6 (patch) | |
tree | c92e09d7798aeed2582598ccadc0393f04051a90 /src/keyboard.c | |
parent | 61f7096c3b5e1d5097f3655bea4091e9fcfd7128 (diff) | |
download | emacs-b819f760b16314638fb374e73eeb0fba3c60b5c6.tar.gz emacs-b819f760b16314638fb374e73eeb0fba3c60b5c6.tar.bz2 emacs-b819f760b16314638fb374e73eeb0fba3c60b5c6.zip |
* src/keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r-- | src/keyboard.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 46e0afc15a4..7b1a39403f3 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -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) { |