diff options
| author | Ruijie Yu <ruijie+git@netyu.xyz> | 2023-05-13 17:58:53 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-13 10:58:53 +0100 |
| commit | 85a3885b9830b9ab9b5595291a51b9c807b04b8a (patch) | |
| tree | b6b5996c74d2328b9d34154dda7bf147dd28c0b4 | |
| parent | e508856a59d18a0d006e215497b5190b3b517791 (diff) | |
Change defcustom type fixnum into natnum (#4)
* breadcrumb.el (bc-project-max-length, bc-imenu-max-length): Fix.
| -rw-r--r-- | breadcrumb.el | 4 |
1 files 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) |
