branch: externals/debbugs
commit f70d5528c8db895a1a009d5cf3e44a729bc6d364
Author: Michael Albinus <[email protected]>
Commit: Michael Albinus <[email protected]>
Minor cleanup in debbugs
* debbugs-gnu.el (debbugs-gnu-width-id, debbugs-gnu-width-state)
(debbugs-gnu-width-submitter, debbugs-gnu-width-title):
Fix docstring and :type.
---
debbugs-gnu.el | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index f8cfcdc2c8..401851294d 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -1339,23 +1339,23 @@ Interactively, it is non-nil with the prefix argument."
(debbugs-gnu nil))
(defcustom debbugs-gnu-width-id 5
- "The width of the \"Id\" column in the tabulated list"
- :type 'integer
+ "The width of the \"Id\" column in the tabulated list."
+ :type 'natnum
:version "30.1")
(defcustom debbugs-gnu-width-state 10
- "The width of the \"State\" column in the tabulated list"
- :type 'integer
+ "The width of the \"State\" column in the tabulated list."
+ :type 'natnum
:version "30.1")
(defcustom debbugs-gnu-width-submitter 18
- "The width of the \"Submitter\" column in the tabulated list"
- :type 'integer
+ "The width of the \"Submitter\" column in the tabulated list."
+ :type 'natnum
:version "30.1")
(defcustom debbugs-gnu-width-title 10
- "The width of the \"Title\" column in the tabulated list"
- :type 'integer
+ "The width of the \"Title\" column in the tabulated list."
+ :type 'natnum
:version "30.1")
(define-derived-mode debbugs-gnu-mode tabulated-list-mode "Debbugs"