update packages
This commit is contained in:
@@ -64,8 +64,8 @@ Users whose default is not \\='sh, but are accessing a remote machine with
|
||||
`telnet' or `ssh', should have the following in their init file:
|
||||
(setq-default ess-bugs-batch-method \\='sh)"
|
||||
:group 'ess-bugs
|
||||
:type '(choice (const sh :tag "Bourne/C-like Unix Shell")
|
||||
(const dos :tag "DOS-like Windows shell")))
|
||||
:type '(choice (const :tag "Bourne/C-like Unix Shell" sh)
|
||||
(const :tag "DOS-like Windows shell" dos)))
|
||||
|
||||
(defcustom ess-bugs-batch-post-command
|
||||
(if (equal ess-bugs-batch-method 'sh) "&" " ")
|
||||
|
||||
@@ -329,7 +329,7 @@ process. If a symbol, the symbol's value should be a directory.
|
||||
For example, the following setting would always start the process
|
||||
in the directory of the current file:
|
||||
|
||||
(setq ess-startup-directory ''default-directory)
|
||||
(setq ess-startup-directory \\='default-directory)
|
||||
|
||||
If `ess-startup-directory' is nil (the default) and
|
||||
`ess-startup-directory-function' is non-nil, the value returned
|
||||
|
||||
@@ -714,7 +714,7 @@ nil otherwise."
|
||||
(save-excursion
|
||||
(goto-char (point-min))
|
||||
(while (search-forward "_" nil t)
|
||||
(backward-delete-char 2)
|
||||
(delete-char -2)
|
||||
(put-text-property (point) (1+ (point)) 'face 'underline))))
|
||||
|
||||
;;*;; Link to Info
|
||||
|
||||
@@ -1,23 +1,20 @@
|
||||
(define-package "ess" "20250110.1437" "Emacs Speaks Statistics"
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "ess" "20250606.831"
|
||||
"Emacs Speaks Statistics."
|
||||
'((emacs "25.1"))
|
||||
:commit "0eb240bcb6d0e933615f6cfaa9761b629ddbabdd" :authors
|
||||
'(("David Smith" . "dsmith@stats.adelaide.edu.au")
|
||||
("A.J. Rossini" . "blindglobe@gmail.com")
|
||||
("Richard M. Heiberger" . "rmh@temple.edu")
|
||||
("Kurt Hornik" . "Kurt.Hornik@R-project.org")
|
||||
("Martin Maechler" . "maechler@stat.math.ethz.ch")
|
||||
("Rodney A. Sparapani" . "rsparapa@mcw.edu")
|
||||
("Stephen Eglen" . "stephen@gnu.org")
|
||||
("Sebastian P. Luque" . "spluque@gmail.com")
|
||||
("Henning Redestig" . "henning.red@googlemail.com")
|
||||
("Vitalie Spinu" . "spinuvit@gmail.com")
|
||||
("Lionel Henry" . "lionel.hry@gmail.com")
|
||||
("J. Alexander Branham" . "alex.branham@gmail.com"))
|
||||
:maintainers
|
||||
'(("ESS Core Team" . "ESS-core@r-project.org"))
|
||||
:maintainer
|
||||
'("ESS Core Team" . "ESS-core@r-project.org")
|
||||
:url "https://ess.r-project.org/")
|
||||
;; Local Variables:
|
||||
;; no-byte-compile: t
|
||||
;; End:
|
||||
:url "https://ess.r-project.org/"
|
||||
:commit "cd85d1e1f0e897b409a948a3a4afdaffe032812e"
|
||||
:revdesc "cd85d1e1f0e8"
|
||||
:authors '(("David Smith" . "dsmith@stats.adelaide.edu.au")
|
||||
("A.J. Rossini" . "blindglobe@gmail.com")
|
||||
("Richard M. Heiberger" . "rmh@temple.edu")
|
||||
("Kurt Hornik" . "Kurt.Hornik@R-project.org")
|
||||
("Martin Maechler" . "maechler@stat.math.ethz.ch")
|
||||
("Rodney A. Sparapani" . "rsparapa@mcw.edu")
|
||||
("Stephen Eglen" . "stephen@gnu.org")
|
||||
("Sebastian P. Luque" . "spluque@gmail.com")
|
||||
("Henning Redestig" . "henning.red@googlemail.com")
|
||||
("Vitalie Spinu" . "spinuvit@gmail.com")
|
||||
("Lionel Henry" . "lionel.hry@gmail.com")
|
||||
("J. Alexander Branham" . "alex.branham@gmail.com"))
|
||||
:maintainers '(("ESS Core Team" . "ESS-core@r-project.org")))
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
"Default linters to use.
|
||||
Can be either a string with R expression to be used as
|
||||
is (e.g. `lintr::default_linters'). Or a list of strings where
|
||||
each element is passed as argument to `lintr::with_defaults'."
|
||||
each element is passed as argument to `lintr::linters_with_defaults'."
|
||||
:group 'ess-R
|
||||
:type '(choice string (repeat string))
|
||||
:package-version '(ess . "18.10"))
|
||||
@@ -85,8 +85,8 @@ each element is passed as argument to `lintr::with_defaults'."
|
||||
if (!suppressWarnings(require(lintr, quietly=T))) {
|
||||
cat('@@error: @@`lintr` package not installed')
|
||||
} else {
|
||||
if (packageVersion('lintr') <= '1.0.3') {
|
||||
cat('@@error: @@Need `lintr` version > v1.0.3')
|
||||
if (packageVersion('lintr') <= '3.0.0') {
|
||||
cat('@@error: @@Need `lintr` version > v3.0.0')
|
||||
} else {
|
||||
tryCatch(lintr::lint(commandArgs(TRUE), ...),
|
||||
error = function(e) {
|
||||
@@ -120,12 +120,12 @@ we couldn't find a .lintr file."
|
||||
|
||||
(defun ess-r--flymake-linters ()
|
||||
"If `ess-r-flymake-linters' is a string, use that.
|
||||
Otherwise, construct a string to pass to lintr::with_defaults."
|
||||
Otherwise, construct a string to pass to lintr::linters_with_defaults."
|
||||
(replace-regexp-in-string
|
||||
"[\n\t ]+" " "
|
||||
(if (stringp ess-r-flymake-linters)
|
||||
ess-r-flymake-linters
|
||||
(concat "lintr::with_defaults("
|
||||
(concat "lintr::linters_with_defaults("
|
||||
(mapconcat #'identity
|
||||
ess-r-flymake-linters
|
||||
", ")
|
||||
|
||||
@@ -72,9 +72,9 @@ Fetching happens once per new ESSR version. The archive is stored
|
||||
in ~/.config/ESSR/ESSRv[VERSION].rds file. You can download and
|
||||
place it there manually if the remote has restricted network
|
||||
access."
|
||||
:type '(choice (const nil :tag "Never")
|
||||
(const ess-remote :tag "With ess-remote only")
|
||||
(const t :tag "Always"))
|
||||
:type '(choice (const :tag "Never" nil)
|
||||
(const :tag "With ess-remote only" ess-remote)
|
||||
(const :tag "Always" t))
|
||||
:group 'ess-R)
|
||||
|
||||
;; Silence the byte compiler
|
||||
@@ -476,7 +476,7 @@ To be used as part of `font-lock-defaults' keywords."
|
||||
(ess-smart-operators . ess-r-smart-operators)
|
||||
(inferior-ess-program . inferior-ess-r-program)
|
||||
(inferior-ess-objects-command . inferior-ess-r-objects-command)
|
||||
(inferior-ess-search-list-command . "search()\n")
|
||||
(inferior-ess-search-list-command . "base::search()\n")
|
||||
(inferior-ess-help-command . inferior-ess-r-help-command)
|
||||
(inferior-ess-exit-command . "q()")
|
||||
(ess-error-regexp-alist . ess-r-error-regexp-alist)
|
||||
@@ -573,7 +573,7 @@ blocking commands will throw an error.")
|
||||
|
||||
;;;###autoload
|
||||
(defun run-ess-r (&optional start-args)
|
||||
"Call 'R', the 'GNU S' system from the R Foundation.
|
||||
"Call \\='R\\=', the \\='GNU S\\=' system from the R Foundation.
|
||||
Optional prefix (\\[universal-argument]) allows to set command line arguments, such as
|
||||
--vsize. This should be OS agnostic.
|
||||
If you have certain command line arguments that should always be passed
|
||||
@@ -2918,10 +2918,10 @@ needed."
|
||||
(defun ess-rutils-html-docs (&optional remote)
|
||||
"Use `browse-url' to navigate R html documentation.
|
||||
Documentation is produced by a modified help.start(), that
|
||||
returns the URL produced by GNU R's http server. If called with a
|
||||
returns the URL produced by GNU R\\='s http server. If called with a
|
||||
prefix, the modified help.start() is called with update=TRUE. The
|
||||
optional REMOTE argument should be a string with a valid URL for
|
||||
the 'R_HOME' directory on a remote server (defaults to NULL)."
|
||||
the \\='R_HOME\\=' directory on a remote server (defaults to NULL)."
|
||||
(interactive)
|
||||
(let* ((update (if current-prefix-arg "update=TRUE" "update=FALSE"))
|
||||
(remote (if (or (and remote (not (string= "" remote))))
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
|
||||
(defcustom ess-rdired-auto-update-interval 5
|
||||
"Seconds between refreshes of the `ess-rdired' buffer."
|
||||
:type '(choice (const nil :tag "No auto updates") (integer :tag "Seconds"))
|
||||
:type '(choice (const :tag "No auto updates" nil) (integer :tag "Seconds"))
|
||||
:group 'ess-R
|
||||
:package-version '(ess . "19.04"))
|
||||
|
||||
|
||||
@@ -287,7 +287,7 @@ indent line."
|
||||
(SAS)))
|
||||
|
||||
(defun SAS ()
|
||||
"Call 'SAS', from SAS Institute."
|
||||
"Call \\='SAS\\=', from SAS Institute."
|
||||
(interactive)
|
||||
(let* ((temp-dialect "SAS")) ;(cdr (rassoc ess-dialect SAS-customize-alist))))
|
||||
(ess-write-to-dribble-buffer
|
||||
|
||||
@@ -555,9 +555,9 @@ If \\='strip, remove all such instances. Otherwise, if non-nil, `+
|
||||
`ess-long+replacement'.
|
||||
This variable can be process-local but not buffer-local."
|
||||
:group 'ess-tracebug
|
||||
:type '(choice (const nil :tag "No replacement")
|
||||
(const strip :tag "Replace all")
|
||||
(const t :tag "Replace 3 or more +")))
|
||||
:type '(choice (const :tag "No replacement" nil)
|
||||
(const :tag "Replace all" strip)
|
||||
(const :tag "Replace 3 or more +" t)))
|
||||
|
||||
(defvar ess-long+replacement ". + "
|
||||
"Replacement used for long + prompt.
|
||||
|
||||
@@ -17,7 +17,8 @@
|
||||
;;
|
||||
;; Maintainer: ESS Core Team <ESS-core@r-project.org>
|
||||
;; Created: 7 Jan 1994
|
||||
;; Version: 25.01.0
|
||||
;; Package-Version: 20250606.831
|
||||
;; Package-Revision: cd85d1e1f0e8
|
||||
;; URL: https://ess.r-project.org/
|
||||
;; Package-Requires: ((emacs "25.1"))
|
||||
;; ESSR-Version: 1.8
|
||||
|
||||
@@ -62,7 +62,7 @@ The default value is nil."
|
||||
"Variables to customize for S+elsewhere.")
|
||||
|
||||
(defun S+elsewhere (&optional _proc-name)
|
||||
"Call 'S-PLUS 3.x', the 'Real Thing' from StatSci."
|
||||
"Call \\='S-PLUS 3.x\\=', the \\='Real Thing\\=' from StatSci."
|
||||
;; git commit 104c4d7c56bc239ea245562763caa317bc3a1a84
|
||||
(declare (obsolete ess-remote "2000"))
|
||||
(ess-write-to-dribble-buffer
|
||||
|
||||
Reference in New Issue
Block a user