update packages

This commit is contained in:
2026-06-27 11:34:21 +02:00
parent 4be4f859c4
commit 1aaef48596
246 changed files with 7997 additions and 4359 deletions

View File

@@ -612,7 +612,7 @@ name; otherwise continues tokenizing up to the token at point. FIXME."
(let ((name (car chunk))
(code (cdr chunk)))
(setf (aref object-code i) `(label ,name))
(cl-incf i)
(incf i)
(puthash name i name->offset)
(while code
(setf (aref object-code i) (car code)
@@ -1770,8 +1770,8 @@ there."
(when start-symbol ; HACK FIXME
(let ((look-for `(label ,start-symbol)))
(while (not (equal (aref instructions pc) look-for))
(cl-incf pc))
(cl-incf pc)))
(incf pc))
(incf pc)))
(setq gnuplot-context--completions nil
gnuplot-context--eldoc nil

View File

@@ -1,11 +1,11 @@
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "gnuplot" "20260322.20"
(define-package "gnuplot" "20260623.1111"
"Major-mode and interactive frontend for gnuplot."
'((emacs "28.1")
(compat "30"))
'((emacs "29.1")
(compat "31"))
:url "https://github.com/emacs-gnuplot/gnuplot"
:commit "39ba1dec5e8e227ba093a30ca07b20d8eb038f29"
:revdesc "39ba1dec5e8e"
:commit "81e3cb30297f0d12df41b865d2a76c8ba179089c"
:revdesc "81e3cb30297f"
:keywords '("data" "gnuplot" "plotting")
:maintainers '(("Maxime Tréca" . "maxime@gmail.com")
("Daniel Mendler" . "mail@daniel-mendler.de")))

View File

@@ -5,11 +5,11 @@
;; Author: Jon Oddie, Bruce Ravel, Phil Type
;; Maintainer: Maxime Tréca <maxime@gmail.com>, Daniel Mendler <mail@daniel-mendler.de>
;; Created: 1998
;; Package-Version: 20260322.20
;; Package-Revision: 39ba1dec5e8e
;; Package-Version: 20260623.1111
;; Package-Revision: 81e3cb30297f
;; Keywords: data gnuplot plotting
;; URL: https://github.com/emacs-gnuplot/gnuplot
;; Package-Requires: ((emacs "28.1") (compat "30"))
;; Package-Requires: ((emacs "29.1") (compat "31"))
;; 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