aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2019-07-24 00:47:32 +0100
committerWilfred Hughes <me@wilfred.me.uk>2019-07-24 00:47:32 +0100
commit7105f47d22b9966cfa5dc6614449e7407abba539 (patch)
tree6341944050743832b09b0b1cbeacfd0a5128e8cd
parent00c5c696521dd361e540af8a1fb5c529527ab5cb (diff)
Remove unused function
Fixes #210
-rw-r--r--helpful.el11
1 files changed, 0 insertions, 11 deletions
diff --git a/helpful.el b/helpful.el
index 0dd3e6d..4f29808 100644
--- a/helpful.el
+++ b/helpful.el
@@ -816,17 +816,6 @@ bound) or else highlight."
docstring
t t))
-(defun helpful--char-table-keys (char-table)
- "Convert CHAR-TABLE to list of pairs (KEYCODES COMMAND)."
- ;; Kludge: use `describe-vector' to convert a char-table to a sparse
- ;; keymap.
- (let (result)
- (map-char-table
- (lambda (key value)
- (push (list (vector key) value) result))
- char-table)
- result))
-
(defun helpful--keymap-keys (keymap)
"Return all the keys and commands in KEYMAP.
Flattens nested keymaps and follows remapped commands.