aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2019-03-16 16:45:26 +0000
committerWilfred Hughes <me@wilfred.me.uk>2019-03-16 16:45:26 +0000
commitade085ac805845f70d5b46acca552071f42782cb (patch)
tree578b7bb25ef92a989be38d90f4a34d4e2d05bb75
parentd5b0eb78731df41a9f20ebf4f3c2d15e8a3d22d8 (diff)
Unused variable
-rw-r--r--helpful.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/helpful.el b/helpful.el
index 3907861..ef5b66d 100644
--- a/helpful.el
+++ b/helpful.el
@@ -1038,8 +1038,7 @@ unescaping too."
((looking-at
;; Text of the form \\[foo-command]
(rx "\\[" (group (+ (not (in "]")))) "]"))
- (let* ((symbol-with-parens (match-string 0))
- (symbol-name (match-string 1)))
+ (let* ((symbol-with-parens (match-string 0)))
;; Remove the original string.
(delete-region (point)
(+ (point) (length symbol-with-parens)))