emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/marginalia ec2e99f8a1: Use natnum custom type (supporte


From: ELPA Syncer
Subject: [elpa] externals/marginalia ec2e99f8a1: Use natnum custom type (supported by Compat 29.1.4.0)
Date: Sun, 5 Mar 2023 02:59:20 -0500 (EST)

branch: externals/marginalia
commit ec2e99f8a12a818ddac2f7db8438477725a1a067
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Use natnum custom type (supported by Compat 29.1.4.0)
---
 marginalia.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/marginalia.el b/marginalia.el
index db3ce034e2..1b02e85810 100644
--- a/marginalia.el
+++ b/marginalia.el
@@ -6,7 +6,7 @@
 ;; Maintainer: Omar AntolĂ­n Camarena <omar@matem.unam.mx>, Daniel Mendler 
<mail@daniel-mendler.de>
 ;; Created: 2020
 ;; Version: 1.1
-;; Package-Requires: ((emacs "27.1") (compat "29.1.3.4"))
+;; Package-Requires: ((emacs "27.1") (compat "29.1.4.0"))
 ;; Homepage: https://github.com/minad/marginalia
 
 ;; This file is part of GNU Emacs.
@@ -51,7 +51,7 @@
   "Maximum truncation width of annotation fields.
 
 This value is adjusted depending on the `window-width'."
-  :type 'integer)
+  :type 'natnum)
 
 (defcustom marginalia-separator "  "
   "Annotation field separator."
@@ -65,14 +65,14 @@ This value is adjusted depending on the `window-width'."
 
 (defcustom marginalia-align-offset 0
   "Additional offset added to the alignment."
-  :type 'integer)
+  :type 'natnum)
 
 (defcustom marginalia-max-relative-age (* 60 60 24 14)
   "Maximum relative age in seconds displayed by the file annotator.
 
 Set to `most-positive-fixnum' to always use a relative age, or 0 to never show
 a relative age."
-  :type 'integer)
+  :type 'natnum)
 
 (defcustom marginalia-annotator-registry
   (mapcar



reply via email to

[Prev in Thread] Current Thread [Next in Thread]