-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emacs 25.1: Symbol’s function definition is void: x-selection-owner-p #9
Comments
I set up a Xubuntu 16.04 VM and compiled Emacs 25.1 using the instructions here https://www.emacswiki.org/emacs/EmacsSnapshotAndDebian#toc3, ie
but I don't get that error - how is your system configured? |
ah, ok, so i'm on a OSX and i'd been using homebrew to install/configure the cocoa app. I tried both emacs-mac and emacs-plus when on |
Okay thanks - #7 was the same issue - I don't have a Mac to test with but I think I got it set up correctly - it'll be updated when Melpa next builds it. |
I changed the code a bit to turn off a compilation warning - it looks like this now - ;; handle renamed function - x-selection-owner-p was renamed to
;; gui-selection-owner-p in emacs 25.1
(defalias 'selection-owner-p 'x-selection-owner-p)
(if (fboundp 'gui-selection-owner-p)
(defalias 'selection-owner-p 'gui-selection-owner-p)) So if gui-selection-owner-p is available as in 25.1 it should use that. |
(Transferring from other thread)
The text was updated successfully, but these errors were encountered: