diff options
| author | Richard M. Stallman | 1994-10-25 10:34:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-25 10:34:49 +0000 |
| commit | c6423dc1ace36c9f26781cb80995bca27e4b7225 (patch) | |
| tree | 59e72ebba2a47faf403463d39e6e9414abf5f643 /src | |
| parent | 08a90d6aea5d7554da2cf7e172a19a75f2f6d50c (diff) | |
| download | emacs-c6423dc1ace36c9f26781cb80995bca27e4b7225.tar.gz emacs-c6423dc1ace36c9f26781cb80995bca27e4b7225.zip | |
(Fx_selection_exists_p): Fix backwards if.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c index 282bfa8ffaf..48ddc783517 100644 --- a/src/xselect.c +++ b/src/xselect.c | |||
| @@ -1815,7 +1815,7 @@ and t is the same as `SECONDARY'.)") | |||
| 1815 | Display *dpy; | 1815 | Display *dpy; |
| 1816 | 1816 | ||
| 1817 | /* It should be safe to call this before we have an X frame. */ | 1817 | /* It should be safe to call this before we have an X frame. */ |
| 1818 | if (FRAME_X_P (selected_frame)) | 1818 | if (! FRAME_X_P (selected_frame)) |
| 1819 | return Qnil; | 1819 | return Qnil; |
| 1820 | 1820 | ||
| 1821 | dpy = FRAME_X_DISPLAY (selected_frame); | 1821 | dpy = FRAME_X_DISPLAY (selected_frame); |