update packages
This commit is contained in:
@@ -59,9 +59,9 @@
|
||||
font-lock-keyword-face)
|
||||
|
||||
(cons (concat "\\<d\\(bern\\|beta\\|bin\\|binom\\|"
|
||||
"cat\\|chisq\\|chisqr\\|CRP\\|"
|
||||
"car_normal\\|car_proper\\|cat\\|chisq\\|chisqr\\|CRP\\|"
|
||||
"dexp\\|dirch\\|dirich\\|"
|
||||
"exp\\|\\(gen[.]\\|inv\\)?gamma\\|hyper\\|"
|
||||
"exp\\|flat\\|\\(gen[.]\\|inv\\)?gamma\\|halfflat\\|hyper\\|"
|
||||
"interval\\|lkj_corr_cholesky\\|laplace\\|lnorm\\|logis\\|"
|
||||
"mnorm\\|mt\\|multi\\|multinom\\|mvt\\|"
|
||||
"negbin\\|nbinom\\|norm\\(mix\\)?\\|par\\|pois\\|sum\\|t\\|"
|
||||
@@ -71,14 +71,15 @@
|
||||
(cons (concat "\\<\\(abs\\|acos\\|acosh\\|asin\\|asinh\\|atan\\|atanh\\|"
|
||||
"asCol\\|asRow\\|backsolve\\|besselK\\|ceiling\\|chol\\|"
|
||||
"cos\\|C\\|dim\\|\\(i\\)?cloglog\\|cube\\|"
|
||||
"equals\\|exp\\|expm\\|expAv\\|expit\\|"
|
||||
"eigen\\|equals\\|exp\\|expm\\|expAv\\|expit\\|"
|
||||
"floor\\|for\\|forwardsolve\\|"
|
||||
"inprod\\|interp[.]lin\\(e\\)?\\|inverse\\|"
|
||||
"lgamma\\|length\\|lfactorial\\|"
|
||||
"log\\|log1p\\|\\(i\\)?logit\\|logdet\\|logfact\\|loggam\\|"
|
||||
"max\\|mean\\|mexp\\|min\\|pmax\\|pmin\\|"
|
||||
"phi\\|pow\\|\\(i\\)?probit\\|prod\\|rank\\|ranked\\|round\\|"
|
||||
"sd\\|sin\\|solve\\|sort\\|sqrt\\|step\\|sum\\|"
|
||||
"max\\|mean\\|mexp\\|min\\|order\\|"
|
||||
"pmax\\|pmin\\|phi\\|pow\\|\\(i\\)?probit\\|prod\\|"
|
||||
"rank\\|ranked\\|round\\|"
|
||||
"sd\\|sin\\|solve\\|sort\\|sqrt\\|step\\|sum\\|svd\\|"
|
||||
"t\\|tan\\|trunc\\|T\\)[ \t\n]*(")
|
||||
font-lock-function-name-face)
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "ess" "20260322.1703"
|
||||
(define-package "ess" "20260526.1432"
|
||||
"Emacs Speaks Statistics."
|
||||
'((emacs "25.1"))
|
||||
:url "https://ess.r-project.org/"
|
||||
:commit "4e112590d1c13cfe464ca7de77837f1b956e4a9f"
|
||||
:revdesc "4e112590d1c1"
|
||||
:commit "da7d7dc1d2cf95760f56cb1763eb543c4dadaa0c"
|
||||
:revdesc "da7d7dc1d2cf"
|
||||
:authors '(("David Smith" . "dsmith@stats.adelaide.edu.au")
|
||||
("A.J. Rossini" . "blindglobe@gmail.com")
|
||||
("Richard M. Heiberger" . "rmh@temple.edu")
|
||||
|
||||
@@ -142,7 +142,7 @@ Otherwise, construct a string to pass to lintr::linters_with_defaults."
|
||||
(when (re-search-forward "@@\\(\\(error\\|warning\\): \\)@@" nil t)
|
||||
(let ((type (ess-r--flymake-msg-type (match-string 1)))
|
||||
(msg (buffer-substring-no-properties (match-end 0) (point-max))))
|
||||
(flymake-log type msg)
|
||||
(flymake-log type "%s" msg)
|
||||
(eq type :error))))
|
||||
|
||||
(defun ess-r--flymake-parse-output (msg-buffer src-buffer report-fn)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; ess-r-syntax.el --- Utils to work with R code -*- lexical-binding: t; -*-
|
||||
|
||||
;; Copyright (C) 2015-2022 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2015-2026 Free Software Foundation, Inc.
|
||||
;; Author: Lionel Henry <lionel.hry@gmail.com>
|
||||
;; Created: 12 Oct 2015
|
||||
;; Maintainer: ESS-core <ESS-core@r-project.org>
|
||||
@@ -310,6 +310,7 @@ content. Return nil when the end of the buffer is reached."
|
||||
|
||||
(defvar ess-r-operators-list
|
||||
'("+" "-" "*" "/" "%%" "**" "^"
|
||||
"%*%" "%/%" "%in%" "%notin%" "%o%" "%x%" "%||%" ; = ls(pattern = "^%", baseenv())
|
||||
"&" "&&" "|" "||" "!" "?" "~"
|
||||
"==" "!=" "<" "<=" ">=" ">"
|
||||
"=" "<-" "<<-" "->" "->>"
|
||||
|
||||
@@ -713,7 +713,11 @@ block before the point."
|
||||
(save-excursion
|
||||
(let ((end-of-entry (ess-roxy-end-of-entry))
|
||||
(beg-of-entry (ess-roxy-beg-of-entry)))
|
||||
(hs-hide-block-at-point nil (list beg-of-entry end-of-entry)))))
|
||||
(if (= (cdr (func-arity 'hs-hide-block-at-point)) 1)
|
||||
;; Emacs 31 ++ signature: single optional COMMENT-REG -- <GH>/emacs-ess/ESS/issues/1334
|
||||
(hs-hide-block-at-point (list beg-of-entry end-of-entry))
|
||||
;; Emacs <= 30.x signature: (END-OF-BLOCK &optional COMMENT-REG)
|
||||
(hs-hide-block-at-point nil (list beg-of-entry end-of-entry))))))
|
||||
|
||||
(defun ess-roxy-toggle-hiding ()
|
||||
"Toggle hiding/showing of a block.
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
;;
|
||||
;; Maintainer: ESS Core Team <ESS-core@r-project.org>
|
||||
;; Created: 7 Jan 1994
|
||||
;; Package-Version: 20260322.1703
|
||||
;; Package-Revision: 4e112590d1c1
|
||||
;; Package-Version: 20260526.1432
|
||||
;; Package-Revision: da7d7dc1d2cf
|
||||
;; URL: https://ess.r-project.org/
|
||||
;; Package-Requires: ((emacs "25.1"))
|
||||
;; ESSR-Version: 1.8
|
||||
|
||||
@@ -14,7 +14,7 @@ File: ess.info, Node: Top, Next: Introduction, Up: (dir)
|
||||
ESS: Emacs Speaks Statistics
|
||||
****************************
|
||||
|
||||
ESS version 26.01.0
|
||||
ESS version 26.05.0
|
||||
|
||||
by A.J. Rossini,
|
||||
R.M. Heiberger,
|
||||
|
||||
@@ -108,6 +108,7 @@ local({
|
||||
}
|
||||
|
||||
|
||||
## builds on R`s functionality in src/library/utils/R/completion.R :
|
||||
.ess_get_completions <- function(string, end, suffix = " = ") {
|
||||
oldopts <- utils::rc.options(funarg.suffix = suffix)
|
||||
on.exit(utils::rc.options(oldopts))
|
||||
|
||||
Reference in New Issue
Block a user