Klimi's new dotfiles with stow.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

41 líneas
1.5 KiB

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