]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/cc-mode.el: Silence compiler warnings
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 1 Nov 2018 13:00:42 +0000 (09:00 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 1 Nov 2018 13:00:42 +0000 (09:00 -0400)
(c-parse-quotes-before-change, c-parse-quotes-after-change):
Flag unused args according to convention.

lisp/progmodes/cc-mode.el

index d019cf249378ea3ea14e4e50292fc8ac807df10c..cc1991a5643b5cc9ced3738d6ffee0a41f9cf0ec 100644 (file)
@@ -1463,7 +1463,7 @@ Note that this is a strict tail, so won't match, e.g. \"0x....\".")
                 (goto-char (match-beginning 0))
                 (save-excursion (search-forward "'" (match-end 0) t)))))))))
 
-(defun c-parse-quotes-before-change (beg end)
+(defun c-parse-quotes-before-change (_beg _end)
   ;; This function analyzes 's near the region (c-new-BEG c-new-END), amending
   ;; those two variables as needed to include 's into that region when they
   ;; might be syntactically relevant to the change in progress.
@@ -1550,7 +1550,7 @@ Note that this is a strict tail, so won't match, e.g. \"0x....\".")
         'c-digit-separator t
         ?')))))
 
-(defun c-parse-quotes-after-change (beg end old-len)
+(defun c-parse-quotes-after-change (_beg _end _old-len)
   ;; This function applies syntax-table properties (value '(1)) and
   ;; c-digit-separator properties as needed to 's within the range (c-new-BEG
   ;; c-new-END).  This operation is performed even within strings and