aboutsummaryrefslogtreecommitdiffstats
path: root/src/w16select.c
diff options
context:
space:
mode:
authorEli Zaretskii2010-05-07 16:51:16 +0300
committerEli Zaretskii2010-05-07 16:51:16 +0300
commitd16bdfc3a1e288643e340848d260bac6443cf445 (patch)
treed808da62fbef93fbafe6daf77bbf2d37b17e2f4b /src/w16select.c
parent9fdec8bc72cc00fa97d72d96e12276846a0ce2f6 (diff)
downloademacs-d16bdfc3a1e288643e340848d260bac6443cf445.tar.gz
emacs-d16bdfc3a1e288643e340848d260bac6443cf445.zip
Don't use XSYMBOL (foo)->value.
msdos.c (dos_set_window_size): w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)' instead of `XSYMBOL (foo)->value'.
Diffstat (limited to 'src/w16select.c')
-rw-r--r--src/w16select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w16select.c b/src/w16select.c
index c6a84e46a60..9ebf6de6250 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -685,8 +685,8 @@ and t is the same as `SECONDARY'. */)
685 into the clipboard if we run under Windows, so we cannot check 685 into the clipboard if we run under Windows, so we cannot check
686 the clipboard alone.) */ 686 the clipboard alone.) */
687 if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY)) 687 if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY))
688 && ! NILP (SYMBOL_VALUE (Fintern_soft (build_string ("kill-ring"), 688 && ! NILP (Fsymbol_value (Fintern_soft (build_string ("kill-ring"),
689 Qnil)))) 689 Qnil))))
690 return Qt; 690 return Qt;
691 691
692 if (EQ (selection, QCLIPBOARD)) 692 if (EQ (selection, QCLIPBOARD))