GNU bug report logs -
#13790
Cannot paste with C-y into Homebrew emacs v24.2.1
Previous Next
Full log
View this message in rfc822 format
Hello.
I don't see what you gain by doing this compared to the builtin integration.
If you remove your code, what does not work wrt copy/paste?
Jan D.
6 mar 2013 kl. 00:19 skrev Josh <josh <at> foxtail.org>:
> On Tue, Mar 5, 2013 at 1:46 PM, Jan Djärv <jan.h.d <at> swipnet.se> wrote:
>> 5 mar 2013 kl. 21:13 skrev Glenn Morris <rgm <at> gnu.org>:
>>> Andrew Pennebaker wrote:
>>>
>>>> I can paste into emacs using Mac OS X's Command+V shortcut, but when I try
>>>> to paste text using the standard C-y command, Emacs says:
>>>>
>>>> Kill ring is empty
>>>
>>> Anyone with Mac OS X know whether/how this is supposed to work?
>
> I use the following to integrate the OS X clipboard into Emacs:
>
> (setq interprogram-cut-function 'paste-to-osx
> interprogram-paste-function 'copy-from-osx)
>
> (defun copy-from-osx ()
> (let ((coding-system-for-read 'utf-8))
> (shell-command-to-string "pbpaste")))
>
> (defun paste-to-osx (text &optional push)
> (let ((process-connection-type nil))
> (let ((proc (start-process "pbcopy" "*Messages*" "pbcopy")))
> (set-process-sentinel proc 'ignore) ;; stifle noise in *Messages*
> (process-send-string proc text)
> (process-send-eof proc)))
> text)
This bug report was last modified 348 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.