update packages

This commit is contained in:
2025-06-22 17:08:08 +02:00
parent 54e5633369
commit 16a0a6db93
558 changed files with 68349 additions and 26568 deletions

View File

@@ -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))))