]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/cc-awk.el: Mark unused args
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 5 Jul 2017 02:30:33 +0000 (22:30 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 5 Jul 2017 02:30:33 +0000 (22:30 -0400)
lisp/progmodes/cc-awk.el

index 736f1de20949f1f74de4e03998e3aa57fb3389d5..662329b5a9d93cb5e38134f25808482b42adc9a1 100644 (file)
   ;; starts at a `while' token.
   (not (c-get-char-property (c-point 'eol) 'c-awk-NL-prop)))
 
-(defun c-awk-clear-NL-props (beg end)
+(defun c-awk-clear-NL-props (beg _end)
   ;; This function is run from before-change-hooks.  It clears the
   ;; c-awk-NL-prop text property from beg to the end of the buffer (The END
   ;; parameter is ignored).  This ensures that the indentation engine will
 ;; Just beyond logical line following the region which is about to be changed.
 ;; Set in c-awk-record-region-clear-NL and used in c-awk-after-change.
 
-(defun c-awk-record-region-clear-NL (beg end)
+(defun c-awk-record-region-clear-NL (_beg end)
 ;; This function is called exclusively from the before-change-functions hook.
 ;; It does two things: Finds the end of the (logical) line on which END lies,
 ;; and clears c-awk-NL-prop text properties from this point onwards.  BEG is