If you are getting the following error when setting up EMACS 24 on Windows 7:
current-kill: Symbol's function definition is void: x-cut-buffer-or-selection-value
Open your .emacs and change:
'x-cut-buffer-or-selection-value)
to:
(setq interprogram-paste-function 'x-selection-value)
I found the answer in this posting:
http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg00638.html
↧