branch: externals/js2-mode
commit 124d4a34fed8bc2b73b0cb625e7205e49e15e484
Author: Philipp Stephani <p...@google.com>
Commit: Philipp Stephani <p...@google.com>

    Prefix an unused argument with an underscore.
    
    This avoids a byte-compile warning.
---
 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 5538736..2af3fa1 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