diff options
author | Daniel Hackney <dan@haxney.org> | 2013-09-04 23:30:07 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-09-04 23:30:07 -0400 |
commit | 6c42fc3efbbf590fca00b866859fbfa13d34b70a (patch) | |
tree | 0519b227a10215d99c1bc1373130c993ff93c623 /lisp/net/eww.el | |
parent | 4c528aabaa750d9a4e739dde482b307b734dcd62 (diff) | |
download | emacs-6c42fc3efbbf590fca00b866859fbfa13d34b70a.tar.gz emacs-6c42fc3efbbf590fca00b866859fbfa13d34b70a.tar.bz2 emacs-6c42fc3efbbf590fca00b866859fbfa13d34b70a.zip |
* lisp/dired-x.el:
* lisp/net/ange-ftp.el:
* lisp/net/browse-url.el:
* lisp/net/dbus.el:
* lisp/net/eudc.el:
* lisp/net/eudcb-ldap.el:
* lisp/net/eww.el:
* lisp/net/imap.el:
* lisp/printing.el:
* lisp/vc/ediff-diff.el:
* lisp/vc/ediff-init.el:
* lisp/vc/ediff-merg.el:
* lisp/vc/ediff-mult.el:
* lisp/vc/ediff-util.el:
* lisp/vc/ediff-wind.el:
* lisp/vc/ediff.el:
* lisp/vc/emerge.el:
* lisp/vc/pcvs.el:
* vc/vc-annotate.el: Prefix unused arguments with `_' to silence
byte compiler. Remove some unused let-bound variables.
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 8b4dd2eed5f..6cf4ff2c9bf 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -381,7 +381,7 @@ word(s) will be searched for via `eww-search-prefix'." eww-history)) ;;;###autoload -(defun eww-browse-url (url &optional new-window) +(defun eww-browse-url (url &optional _new-window) (when (and (equal major-mode 'eww-mode) eww-current-url) (eww-save-history)) |