diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-05-07 16:51:16 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-05-07 16:51:16 +0300 |
commit | d16bdfc3a1e288643e340848d260bac6443cf445 (patch) | |
tree | d808da62fbef93fbafe6daf77bbf2d37b17e2f4b /src/w16select.c | |
parent | 9fdec8bc72cc00fa97d72d96e12276846a0ce2f6 (diff) | |
download | emacs-d16bdfc3a1e288643e340848d260bac6443cf445.tar.gz emacs-d16bdfc3a1e288643e340848d260bac6443cf445.tar.bz2 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.c | 4 |
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'. */) into the clipboard if we run under Windows, so we cannot check the clipboard alone.) */ if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY)) - && ! NILP (SYMBOL_VALUE (Fintern_soft (build_string ("kill-ring"), - Qnil)))) + && ! NILP (Fsymbol_value (Fintern_soft (build_string ("kill-ring"), + Qnil)))) return Qt; if (EQ (selection, QCLIPBOARD)) |