diff options
author | Tom Tromey <tromey@adacore.com> | 2022-12-19 09:46:54 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-12-19 09:46:54 -0700 |
commit | 0d120726bda4768b176b83c1f81ef63a5d49d881 (patch) | |
tree | 72e70d381c3df3115b380aa94a22146f18537532 /binutils | |
parent | 4ec2227afb0a091fa94e1571bc5e117a2a6c8b01 (diff) | |
download | binutils-0d120726bda4768b176b83c1f81ef63a5d49d881.zip binutils-0d120726bda4768b176b83c1f81ef63a5d49d881.tar.gz binutils-0d120726bda4768b176b83c1f81ef63a5d49d881.tar.bz2 |
Avoid compiler warning in dwarf-do-refresh
The Emacs 28 compiler warns about dwarf-mode.el:
Warning (comp): dwarf-mode.el:180:32: Warning: Unused lexical argument `ignore'
This is easily fixed by prepending "_" to the parameter's name.
binutils/ChangeLog
2022-12-19 Tom Tromey <tromey@adacore.com>
* dwarf-mode.el (dwarf-do-refresh): Avoid compiler warning.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/dwarf-mode.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 6bd121e..e7f918d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2022-12-19 Tom Tromey <tromey@adacore.com> + + * dwarf-mode.el (dwarf-do-refresh): Avoid compiler warning. + 2022-12-19 Nick Clifton <nickc@redhat.com> PR 29914 diff --git a/binutils/dwarf-mode.el b/binutils/dwarf-mode.el index 9df875c..3c59ee1 100644 --- a/binutils/dwarf-mode.el +++ b/binutils/dwarf-mode.el @@ -177,7 +177,7 @@ A prefix argument means expand all children." ;; Run objdump and insert the contents into the buffer. The arguments ;; are the way they are because this is also called as a ;; revert-buffer-function. -(defun dwarf-do-refresh (&rest ignore) +(defun dwarf-do-refresh (&rest _ignore) (dwarf--check-running) (let ((inhibit-read-only t)) (dwarf--invoke (point-min) (point-max) |