From ab2ad4d773b3278329e75d4aa932e1d7dfb960ad Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Thu, 23 Aug 2012 02:02:30 +0900 Subject: [PATCH] do not install pasteboard.el when not on osx --- emacs.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs.el b/emacs.el index 325d64a..5b9cc0e 100644 --- a/emacs.el +++ b/emacs.el @@ -565,7 +565,8 @@ drill-instructor.el" (require 'xclip nil t) (turn-on-xclip)) -(and (dllib-if-unfound +(and (eq system-type 'darwin) + (dllib-if-unfound "https://raw.github.com/10sr/emacs-lisp/master/pasteboard.el" t) (require 'pasteboard nil t)