Skip to content

Commit d9627a4

Browse files
committed
go-mode.el: fix "unused variable num" waning
Fixes a: go-mode.el:2475:60: Warning: Unused lexical variable ‘num’
1 parent 9a012a7 commit d9627a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2472,7 +2472,7 @@ divisor for FILE-NAME."
24722472
(rest (split-string (nth 1 parts) "[., ]")))
24732473

24742474
(cl-destructuring-bind
2475-
(start-line start-column end-line end-column num count)
2475+
(start-line start-column end-line end-column _ count)
24762476
(mapcar #'string-to-number rest)
24772477

24782478
(when (string= (file-name-nondirectory file) file-name)

0 commit comments

Comments
 (0)