From 673ae566ec483c8e2be4f076da9a54f5d905591a Mon Sep 17 00:00:00 2001 From: Justin Burkett Date: Tue, 20 Feb 2024 20:00:22 -0500 Subject: [PATCH] Remove "Internal" from docstrings of defvars The internal status is implied by the double hyphen in the name. --- which-key.el | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/which-key.el b/which-key.el index 88cca17..e4e5aaa 100644 --- a/which-key.el +++ b/which-key.el @@ -715,26 +715,24 @@ Used in functions like `which-key-show-keymap'.") ;;; Internal Vars (defvar which-key--buffer nil - "Internal: Holds reference to which-key buffer.") + "Holds reference to which-key buffer.") (defvar which-key--timer nil - "Internal: Holds reference to open window timer.") + "Holds reference to open window timer.") (defvar which-key--secondary-timer-active nil - "Internal: Non-nil if the secondary timer is active.") + "Non-nil if the secondary timer is active.") (defvar which-key--paging-timer nil - "Internal: Holds reference to timer for paging.") + "Holds reference to timer for paging.") (defvar which-key--frame nil - "Internal: Holds reference to which-key frame. + "Holds reference to which-key frame. Used when `which-key-popup-type' is frame.") (defvar which-key--echo-keystrokes-backup nil - "Internal: Backup the initial value of `echo-keystrokes'.") + "Backup the initial value of `echo-keystrokes'.") (defvar which-key--prefix-help-cmd-backup nil - "Internal: Backup the value of `prefix-help-command'.") + "Backup the value of `prefix-help-command'.") (defvar which-key--last-try-2-loc nil - "Internal: Last location of side-window when two locations -used.") + "Last location of side-window when two locations used.") (defvar which-key--automatic-display nil - "Internal: Non-nil if popup was triggered with automatic -update.") + "Non-nil if popup was triggered with automatic update.") (defvar which-key--debug-buffer-name nil "If non-nil, use this buffer for debug messages.") (defvar which-key--multiple-locations nil)