From: Don Armstrong Date: Fri, 15 Jan 2016 16:19:04 +0000 (-0800) Subject: require remote eval and provide it X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c3a51dbd7b4de8fed93b2d11dab7289cc1ae15a1;p=lib.git require remote eval and provide it --- diff --git a/emacs_el/configuration/ess_configuration.el b/emacs_el/configuration/ess_configuration.el index c8d2f02..d42fbc8 100644 --- a/emacs_el/configuration/ess_configuration.el +++ b/emacs_el/configuration/ess_configuration.el @@ -11,6 +11,7 @@ ; ess-noweb-default-code-mode ; ess-noweb-last-chunk-index))) (require 'ess-site) +(require 'ess_remote_eval) (defun ess-change-directory (path) "Set the current working directory to PATH for both *R* and Emacs." diff --git a/emacs_el/configuration/ess_remote_eval.el b/emacs_el/configuration/ess_remote_eval.el index 838c15f..7ce80c9 100644 --- a/emacs_el/configuration/ess_remote_eval.el +++ b/emacs_el/configuration/ess_remote_eval.el @@ -4,3 +4,5 @@ (shell-command-on-region start end "eval_r" (get-buffer-create "***essregionremoteeval***")) (kill-buffer "***essregionremoteeval***") ) + +(provide 'ess_remote_eval)