;;; ess-autoloads.el --- Emacs Speaks Statistics: statistical programming within Emacs12;; Copyright (C) 2012 Donald E. Curtis3;; Copyright (C) 2014 The ESS Core Team45;; Original Author: Donald E. Curtis6;; Created: March 5, 20127;; Maintainers: ESS-core <[email protected]>89;; Keywords: autoload, startup, configuration, package.el10;; Summary: essential autoloads for ESS1112;; This file is part of ESS1314;; This file is free software; you can redistribute it and/or modify15;; it under the terms of the GNU General Public License as published by16;; the Free Software Foundation; either version 2, or (at your option)17;; any later version.18;;19;; This file is distributed in the hope that it will be useful,20;; but WITHOUT ANY WARRANTY; without even the implied warranty of21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the22;; GNU General Public License for more details.23;;24;; A copy of the GNU General Public License is available at25;; http://www.r-project.org/Licenses/26;;27;; In short: you may use this code any way you like, as long as you28;; don't charge money for it, remove this notice, or hold anyone liable29;; for its results.3031;;; Commentary:3233;;; This file is just a wrapper so that ESS will be more `package.el'34;;; friendly. This is just a list of functions that require loading35;;; of ESS through `ess-site'.3637;;; Code:3839;;*;; Requires and autoloads40;;;=====================================================41;;;4243(when (boundp 'load-path)44(add-to-list 'load-path45(file-name-as-directory46(expand-file-name47"lisp"48(file-name-directory load-file-name)))))4950(autoload 'R "ess-site" "Call 'R', the 'GNU S' system from the R Foundation.51Optional prefix (C-u) allows to set command line arguments, such as52--vsize. This should be OS agnostic.53If you have certain command line arguments that should always be passed54to R, put them in the variable `inferior-R-args'." t)5556(autoload 'S "ess-site" "Call 'S'." t)5758; Local variables section5960;;; This file is automatically placed in Outline minor mode.61;;; The file is structured as follows:62;;; Chapters: ^L ;63;;; Sections: ;;*;;64;;; Subsections: ;;;*;;;65;;; Components: defuns, defvars, defconsts66;;; Random code beginning with a ;;;;* comment6768;;; Local variables:69;;; mode: emacs-lisp70;;; mode: outline-minor71;;; outline-regexp: "\^L\\|\\`;\\|;;\\*\\|;;;\\*\\|(def[cvu]\\|(setq\\|;;;;\\*"72;;; End:7374;;; ess-autoloads.el ends here75767778