branch: externals/js2-mode
commit a6e130500f0bedce283173dcee7b06966fabc4c6
Merge: ae2d021 124d4a3
Author: Dmitry Gutov <dgu...@yandex.ru>
Commit: GitHub <nore...@github.com>

    Merge pull request #555 from phst/unused-arg
    
    Prefix an unused argument with an underscore.
---
 js2-old-indent.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js2-old-indent.el b/js2-old-indent.el
index 32cab23..693a7d3 100644
--- a/js2-old-indent.el
+++ b/js2-old-indent.el
@@ -480,7 +480,7 @@ indentation is aligned to that column."
         (+ 1 (current-column))
       0)))
 
-(defun js2-indent-line (&optional bounce-backwards)
+(defun js2-indent-line (&optional _bounce-backwards)
   "Indent the current line as JavaScript source text."
   (interactive)
   (let (parse-status offset

Reply via email to