aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Burkett2024-02-20 20:00:22 -0500
committerJustin Burkett2024-02-20 20:00:22 -0500
commit673ae566ec483c8e2be4f076da9a54f5d905591a (patch)
tree4787b71fb925dc4ade58c8e53afc2ad624a75218
parenta192f73f596f91a67da726ad72f831318dc348d7 (diff)
downloademacs-673ae566ec483c8e2be4f076da9a54f5d905591a.tar.gz
emacs-673ae566ec483c8e2be4f076da9a54f5d905591a.zip
Remove "Internal" from docstrings of defvars
The internal status is implied by the double hyphen in the name.
-rw-r--r--which-key.el20
1 files changed, 9 insertions, 11 deletions
diff --git a/which-key.el b/which-key.el
index 88cca1796a3..e4e5aaadde3 100644
--- a/which-key.el
+++ b/which-key.el
@@ -715,26 +715,24 @@ Used in functions like `which-key-show-keymap'.")
715;;; Internal Vars 715;;; Internal Vars
716 716
717(defvar which-key--buffer nil 717(defvar which-key--buffer nil
718 "Internal: Holds reference to which-key buffer.") 718 "Holds reference to which-key buffer.")
719(defvar which-key--timer nil 719(defvar which-key--timer nil
720 "Internal: Holds reference to open window timer.") 720 "Holds reference to open window timer.")
721(defvar which-key--secondary-timer-active nil 721(defvar which-key--secondary-timer-active nil
722 "Internal: Non-nil if the secondary timer is active.") 722 "Non-nil if the secondary timer is active.")
723(defvar which-key--paging-timer nil 723(defvar which-key--paging-timer nil
724 "Internal: Holds reference to timer for paging.") 724 "Holds reference to timer for paging.")
725(defvar which-key--frame nil 725(defvar which-key--frame nil
726 "Internal: Holds reference to which-key frame. 726 "Holds reference to which-key frame.
727Used when `which-key-popup-type' is frame.") 727Used when `which-key-popup-type' is frame.")
728(defvar which-key--echo-keystrokes-backup nil 728(defvar which-key--echo-keystrokes-backup nil
729 "Internal: Backup the initial value of `echo-keystrokes'.") 729 "Backup the initial value of `echo-keystrokes'.")
730(defvar which-key--prefix-help-cmd-backup nil 730(defvar which-key--prefix-help-cmd-backup nil
731 "Internal: Backup the value of `prefix-help-command'.") 731 "Backup the value of `prefix-help-command'.")
732(defvar which-key--last-try-2-loc nil 732(defvar which-key--last-try-2-loc nil
733 "Internal: Last location of side-window when two locations 733 "Last location of side-window when two locations used.")
734used.")
735(defvar which-key--automatic-display nil 734(defvar which-key--automatic-display nil
736 "Internal: Non-nil if popup was triggered with automatic 735 "Non-nil if popup was triggered with automatic update.")
737update.")
738(defvar which-key--debug-buffer-name nil 736(defvar which-key--debug-buffer-name nil
739 "If non-nil, use this buffer for debug messages.") 737 "If non-nil, use this buffer for debug messages.")
740(defvar which-key--multiple-locations nil) 738(defvar which-key--multiple-locations nil)