;;; ess-lsp-l.el --- Support for editing Lisp source code12;; Copyright (C) 1997 A.J. Rossini.3;; Copyright (C) 1998--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: 1 Sept 19978;; Maintainer: ESS-core <[email protected]>910;; This file is part of ESS.1112;; This file is free software; you can redistribute it and/or modify13;; it under the terms of the GNU General Public License as published by14;; the Free Software Foundation; either version 2, or (at your option)15;; any later version.1617;; This file is distributed in the hope that it will be useful,18;; but WITHOUT ANY WARRANTY; without even the implied warranty of19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the20;; GNU General Public License for more details.2122;; A copy of the GNU General Public License is available at23;; http://www.r-project.org/Licenses/2425;;; Commentary:2627;; Configurations for editing XLispStat source code. Contains any underlying28;; changes that need to be made.2930;;; Code:3132; Requires and autoloads3334;; Contents "translated" from lisp-mode.el35(require 'lisp-mode)3637; Configuration variables38394041(defvar Lisp-editing-alist42'((paragraph-start . (concat "^$\\|" page-delimiter))43(paragraph-separate . (concat "^$\\|" page-delimiter))44(paragraph-ignore-fill-prefix . t)45(fill-paragraph-function . 'lisp-fill-paragraph)46(adaptive-fill-mode . nil)47(indent-line-function . 'lisp-indent-line)48(indent-region-function . 'lisp-indent-region)49(require-final-newline . mode-require-final-newline)50(comment-start . ";")51(comment-start-skip . "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")52(comment-column . 40)53(comment-indent-function . 'lisp-comment-indent)54(parse-sexp-ignore-comments . t)55(ess-style . ess-default-style)56(ess-local-process-name . nil)57;;(ess-keep-dump-files . 'ask)58(ess-mode-syntax-table . lisp-mode-syntax-table)59(font-lock-defaults . '(lisp-font-lock-keywords)))60"General options for editing LispStat, XLispStat, and ViSta source files.")6162(provide 'ess-lsp-l)6364; Local variables section6566;;; This file is automatically placed in Outline minor mode.67;;; The file is structured as follows:68;;; Chapters: ^L ;69;;; Sections: ;;*;;70;;; Subsections: ;;;*;;;71;;; Components: defuns, defvars, defconsts72;;; Random code beginning with a ;;;;* comment7374;;; Local variables:75;;; mode: emacs-lisp76;;; outline-minor-mode: nil77;;; mode: outline-minor78;;; outline-regexp: "\^L\\|\\`;\\|;;\\*\\|;;;\\*\\|(def[cvu]\\|(setq\\|;;;;\\*"79;;; End:8081;;; ess-lsp-l.el ends here828384