Skip to content

Commit

Permalink
Remove "Internal" from docstrings of defvars
Browse files Browse the repository at this point in the history
The internal status is implied by the double hyphen in the name.
  • Loading branch information
justbur committed Feb 21, 2024
1 parent a192f73 commit 673ae56
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions which-key.el
Expand Up @@ -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)
Expand Down

0 comments on commit 673ae56

Please sign in to comment.