;;; ess-arc-d.el --- ARC customization12;; Copyright (C) 2000 A. J. Rossini3;; Copyright (C) 2001--2004 A.J. Rossini, Richard M. Heiberger, Martin4;; Maechler, Kurt Hornik, Rodney Sparapani, and Stephen Eglen.56;; Author: A.J. Rossini <[email protected]>7;; Created: 30 Jun 20008;; Maintainer: ESS-core <[email protected]>910;; Keywords: languages1112;; 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.1819;; 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.2324;; A copy of the GNU General Public License is available at25;; http://www.r-project.org/Licenses/262728;;; Commentary:2930;; This file extends the XLispStat configuration for ARC, the extension of the31;; R-Code.3233;;; Code:3435(require 'ess-lsp-l)3637(autoload 'inferior-ess "ess-inf" "Run an ESS process.")3839(defvar ARC-customize-alist40'((ess-customize-alist . ARC-customize-alist )41(ess-language . "XLS" )42(ess-dialect . "ARC" )43(ess-loop-timeout . ess-XLS-loop-timeout)44(ess-object-name-db-file . "ess-xls-namedb.el" )45(ess-help-sec-regex . " ")46(ess-help-sec-keys-alist . " ")47(inferior-ess-primary-prompt . "> ?" )48(comint-use-prompt-regexp . t)49(inferior-ess-program . inferior-ARC-program-name)50(inferior-ess-help-command . "(help '%s)\n" )51(inferior-ess-objects-command . "(variables)\n" )52(inferior-ess-exit-command . "(exit)\n" )53;;(inferior-ess-start-args . nil)54(inferior-ess-start-file . nil)) ; "~/.ess-ARC")5556"Variables to customize for ARC, a dialect of XLS.")575859(defun ARC-mode (&optional proc-name)60"Major mode for editing ARC source. NOT EVEN STARTED."61(interactive)62(setq ess-customize-alist ARC-customize-alist)63(lisp-mode))646566(defun ARC ()67"Call 'ARC', the extend XLispStat statistical system, from Forrest Young."6869(interactive)70(setq ess-customize-alist ARC-customize-alist)71(ess-write-to-dribble-buffer72(format "(ARC): ess-dialect=%s , buf=%s\n"73ess-dialect (current-buffer)))74(inferior-ess))7576(fset 'arc 'ARC)7778; Provide package7980(provide 'ess-arc-d)8182; Local variables section8384;;; This file is automatically placed in Outline minor mode.85;;; The file is structured as follows:86;;; Chapters: ^L ;87;;; Sections: ;;*;;88;;; Subsections: ;;;*;;;89;;; Components: defuns, defvars, defconsts90;;; Random code beginning with a ;;;;* comment9192;;; Local variables:93;;; mode: emacs-lisp94;;; outline-minor-mode: nil95;;; mode: outline-minor96;;; outline-regexp: "\^L\\|\\`;\\|;;\\*\\|;;;\\*\\|(def[cvu]\\|(setq\\|;;;;\\*"97;;; End:9899;;; ess-arc-d.el ends here100101102