~ubuntu-branches/ubuntu/hoary/ess/hoary

« back to all changes in this revision

Viewing changes to lisp/essd-s4.el

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-02-15 20:08:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040215200831-7b1g2z10hylgz809
Tags: 5.1.24-6
* Newer standards
* Bug fix: "Half-broken dependency on emacs20", thanks to Martin
  Michlmayr (Closes: #232757).  replace with emacs21

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
;; Author: A.J. Rossini <rossini@stat.sc.edu>
6
6
;; Maintainer: A.J. Rossini <rossini@stat.sc.edu>
7
7
;; Created: 12 Jun 1997
8
 
;; Modified: $Date: 2002/01/20 06:14:36 $
9
 
;; Version: $Revision: 5.8 $
10
 
;; RCS: $Id: essd-s4.el,v 5.8 2002/01/20 06:14:36 rmh Exp $
 
8
;; Modified: $Date: 2002/06/24 07:48:01 $
 
9
;; Version: $Revision: 5.10 $
 
10
;; RCS: $Id: essd-s4.el,v 5.10 2002/06/24 07:48:01 maechler Exp $
11
11
;;
12
12
;; Keywords: start up, configuration.
13
13
 
84
84
    (ess-STERM  . "iESS")
85
85
    (ess-editor . S-editor)
86
86
    (ess-pager  . S-pager)
87
 
    (inferior-ess-language-start .
88
 
                                 (concat "options("
89
 
                                         "STERM='"  ess-STERM  "'"
90
 
                                         (if ess-editor 
91
 
                                             (concat ", editor='" ess-editor "'"))
92
 
                                         (if ess-pager 
93
 
                                             (concat ", pager='"  ess-pager  "'"))
94
 
                                         ")"))
95
 
)
 
87
    (inferior-ess-language-start . (eval inferior-S-language-start))
 
88
    )
96
89
  "Variables to customize for S4.")
97
90
 
98
91
;; For loading up the S code required for the above.
123
116
  "Major mode for editing S4 source.  See `ess-mode' for more help."
124
117
  (interactive)
125
118
  (setq ess-customize-alist S4-customize-alist)
126
 
  (ess-mode S4-customize-alist proc-name))
 
119
  (ess-mode S4-customize-alist proc-name)
 
120
  (if ess-S-use-imenu (ess-imenu-R)))
127
121
 
128
122
 
129
123
;; From RMH:    ALL THIS SHOULD BE INCORPORATED BY 5.0!