|
;;; ess-rutils.el --- Convenience features for package and object control. -*- lexical-binding: t; -*-
|
|
|
|
;; Author: J. Alexander Branham
|
|
;; Maintainer: ESS-Core
|
|
;; Keywords: processes
|
|
|
|
;; Copyright (c) 2019 Free Software Foundation
|
|
;; Copyright (c) 2013-2019 ESS Core
|
|
;; Copyright (c) 2005-2013 Sebastian P. Luque
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; History:
|
|
|
|
;; This file was originally written by Sebastian Luque in 2004. It was
|
|
;; completely rewritten in 2019 and then merged into ess-r-mode as
|
|
;; part of contributing ESS to GNU Emacs.
|
|
|
|
;;; Commentary:
|
|
|
|
;; This file used to have support for listing packages and a few other
|
|
;; misc functions. That is now in ess-r-mode. This file is provided
|
|
;; only so that users who have (require 'ess-rutils) in their init
|
|
;; files don't encounter errors when they update ESS.
|
|
|
|
;;; Code:
|
|
|
|
(provide 'ess-rutils)
|
|
|
|
;;; ess-rutils.el ends here
|