Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
2701 views
1
;;; ess-autoloads.el --- Emacs Speaks Statistics: statistical programming within Emacs
2
3
;; Copyright (C) 2012 Donald E. Curtis
4
;; Copyright (C) 2014 The ESS Core Team
5
6
;; Original Author: Donald E. Curtis
7
;; Created: March 5, 2012
8
;; Maintainers: ESS-core <[email protected]>
9
10
;; Keywords: autoload, startup, configuration, package.el
11
;; Summary: essential autoloads for ESS
12
13
;; This file is part of ESS
14
15
;; This file is free software; you can redistribute it and/or modify
16
;; it under the terms of the GNU General Public License as published by
17
;; the Free Software Foundation; either version 2, or (at your option)
18
;; any later version.
19
;;
20
;; This file is distributed in the hope that it will be useful,
21
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
;; GNU General Public License for more details.
24
;;
25
;; A copy of the GNU General Public License is available at
26
;; http://www.r-project.org/Licenses/
27
;;
28
;; In short: you may use this code any way you like, as long as you
29
;; don't charge money for it, remove this notice, or hold anyone liable
30
;; for its results.
31
32
;;; Commentary:
33
34
;;; This file is just a wrapper so that ESS will be more `package.el'
35
;;; friendly. This is just a list of functions that require loading
36
;;; of ESS through `ess-site'.
37
38
;;; Code:
39
40
;;*;; Requires and autoloads
41
;;;=====================================================
42
;;;
43
44
(when (boundp 'load-path)
45
(add-to-list 'load-path
46
(file-name-as-directory
47
(expand-file-name
48
"lisp"
49
(file-name-directory load-file-name)))))
50
51
(autoload 'R "ess-site" "Call 'R', the 'GNU S' system from the R Foundation.
52
Optional prefix (C-u) allows to set command line arguments, such as
53
--vsize. This should be OS agnostic.
54
If you have certain command line arguments that should always be passed
55
to R, put them in the variable `inferior-R-args'." t)
56
57
(autoload 'S "ess-site" "Call 'S'." t)
58
59
; Local variables section
60
61
;;; This file is automatically placed in Outline minor mode.
62
;;; The file is structured as follows:
63
;;; Chapters: ^L ;
64
;;; Sections: ;;*;;
65
;;; Subsections: ;;;*;;;
66
;;; Components: defuns, defvars, defconsts
67
;;; Random code beginning with a ;;;;* comment
68
69
;;; Local variables:
70
;;; mode: emacs-lisp
71
;;; mode: outline-minor
72
;;; outline-regexp: "\^L\\|\\`;\\|;;\\*\\|;;;\\*\\|(def[cvu]\\|(setq\\|;;;;\\*"
73
;;; End:
74
75
;;; ess-autoloads.el ends here
76
77
78