From 85a3885b9830b9ab9b5595291a51b9c807b04b8a Mon Sep 17 00:00:00 2001 From: Ruijie Yu Date: Sat, 13 May 2023 17:58:53 +0800 Subject: Change defcustom type fixnum into natnum (#4) * breadcrumb.el (bc-project-max-length, bc-imenu-max-length): Fix. --- breadcrumb.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/breadcrumb.el b/breadcrumb.el index e2c7184..9e308a2 100644 --- a/breadcrumb.el +++ b/breadcrumb.el @@ -210,13 +210,13 @@ These structures don't have a `breadcrumb-region' property on." :group 'convenience) (defcustom bc-project-max-length 40 - "Soft cutoff for `breadcrumb-project-crumbs'." :type 'fixnum) + "Soft cutoff for `breadcrumb-project-crumbs'." :type 'natnum) (defcustom bc-project-crumb-separator "/" "Separator for `breadcrumb-project-crumbs'." :type 'string) (defcustom bc-imenu-max-length 40 - "Soft cutoff for `breadcrumb-imenu-crumbs'." :type 'fixnum) + "Soft cutoff for `breadcrumb-imenu-crumbs'." :type 'natnum) (defcustom bc-imenu-crumb-separator " > " "Separator for `breadcrumb-project-crumbs'." :type 'string) -- cgit v1.0