Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
2701 views
1
;;; ess-comp.el --- setting for compiling, only.
2
3
;; Copyright (C) 1997--2006 A. J. Rossini
4
;; Copyright (C) 1997--2006 A.J. Rossini, Richard M. Heiberger, Martin
5
;; Maechler, Kurt Hornik, Rodney Sparapani, and Stephen Eglen.
6
7
;; Author: A.J. Rossini <[email protected]>
8
;; Created: 25 July 1997
9
;; Maintainer: ESS-core <[email protected]>
10
11
;; Keywords: languages
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
;;; Commentary:
29
30
;; This file sets up all compilation needs.
31
32
;;; Code:
33
34
(provide 'ess-comp)
35
36
;; Emacs doesn't include '.' in the emacs lisp load path.
37
(add-to-list 'load-path nil)
38
39
;; defvar'ed to nil in ./ess-site.el
40
(setq ess-show-load-messages t)
41
42
(defun ess-message (format-string &rest args)
43
"Shortcut for \\[message] only if `ess-show-load-messages' is non-nil."
44
(if ess-show-load-messages (message format-string args)))
45
46
;; These are required by every other file.
47
(ess-message "loading 'ess-compat ..") (require 'ess-compat) ;set Emacsen diffs
48
(ess-message "loading 'ess-custom ..") (require 'ess-custom) ;set variables
49
(ess-message "loading 'ess ..") (require 'ess) ;configure
50
(ess-message "loading 'ess-site ..") (require 'ess-site) ;overload defaults
51
52
; Local variables section
53
54
;;; This file is automatically placed in Outline minor mode.
55
;;; The file is structured as follows:
56
;;; Chapters: ^L ;
57
;;; Sections: ;;*;;
58
;;; Subsections: ;;;*;;;
59
;;; Components: defuns, defvars, defconsts
60
;;; Random code beginning with a ;;;;* comment
61
;;; Local variables:
62
;;; mode: emacs-lisp
63
;;; mode: outline-minor
64
;;; outline-regexp: "\^L\\|\\`;\\|;;\\*\\|;;;\\*\\|(def[cvu]\\|(setq\\|;;;;\\*"
65
;;; End:
66
67
;;; ess-comp.el ends here
68
69