diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2026-05-02 11:50:28 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2026-05-02 11:50:28 +0200 |
| commit | 286f42c3f1b0946ee39b044fba8b176d8270821d (patch) | |
| tree | 33e0fe1ca98d584cd73d6b6d6128422d505e4982 | |
| parent | ad87be843833187f3e045d70264564bc8118a4f1 (diff) | |
Require Compat 31externals/dicom
| -rw-r--r-- | dicom.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ ;; Maintainer: Daniel Mendler <mail@daniel-mendler.de> ;; Created: 2024 ;; Version: 1.3 -;; Package-Requires: ((emacs "29.1") (compat "30")) +;; Package-Requires: ((emacs "29.1") (compat "31")) ;; URL: https://github.com/minad/dicom ;; Keywords: multimedia, hypermedia, files @@ -589,13 +589,13 @@ The command is specified as FMT string with ARGS." (point) 'dicom--file nil (point-max)))) (goto-char pt) (when (or (eobp) (get-text-property pt 'dicom--file)) - (cl-decf n))) + (decf n))) (while-let (((< n 0)) (pt (previous-single-property-change (point) 'dicom--file nil (point-min)))) (goto-char pt) (when (or (bobp) (get-text-property pt 'dicom--file)) - (cl-incf n)))) + (incf n)))) (when-let* ((win (get-buffer-window))) (set-window-point win (point))) (dicom-open |
