diff options
| author | Stefan Monnier | 2017-07-04 22:30:33 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2017-07-04 22:30:33 -0400 |
| commit | 326d0ee4240999b57d8cc0feb52bc6790218e324 (patch) | |
| tree | e95c04b26b65fcaa0772b89118bdc8864052e1b3 | |
| parent | 709b985e610118114b7edf9310af24aab4e62bad (diff) | |
| download | emacs-326d0ee4240999b57d8cc0feb52bc6790218e324.tar.gz emacs-326d0ee4240999b57d8cc0feb52bc6790218e324.zip | |
* lisp/progmodes/cc-awk.el: Mark unused args
| -rw-r--r-- | lisp/progmodes/cc-awk.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index 736f1de2094..662329b5a9d 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el | |||
| @@ -592,7 +592,7 @@ | |||
| 592 | ;; starts at a `while' token. | 592 | ;; starts at a `while' token. |
| 593 | (not (c-get-char-property (c-point 'eol) 'c-awk-NL-prop))) | 593 | (not (c-get-char-property (c-point 'eol) 'c-awk-NL-prop))) |
| 594 | 594 | ||
| 595 | (defun c-awk-clear-NL-props (beg end) | 595 | (defun c-awk-clear-NL-props (beg _end) |
| 596 | ;; This function is run from before-change-hooks. It clears the | 596 | ;; This function is run from before-change-hooks. It clears the |
| 597 | ;; c-awk-NL-prop text property from beg to the end of the buffer (The END | 597 | ;; c-awk-NL-prop text property from beg to the end of the buffer (The END |
| 598 | ;; parameter is ignored). This ensures that the indentation engine will | 598 | ;; parameter is ignored). This ensures that the indentation engine will |
| @@ -847,7 +847,7 @@ | |||
| 847 | ;; Just beyond logical line following the region which is about to be changed. | 847 | ;; Just beyond logical line following the region which is about to be changed. |
| 848 | ;; Set in c-awk-record-region-clear-NL and used in c-awk-after-change. | 848 | ;; Set in c-awk-record-region-clear-NL and used in c-awk-after-change. |
| 849 | 849 | ||
| 850 | (defun c-awk-record-region-clear-NL (beg end) | 850 | (defun c-awk-record-region-clear-NL (_beg end) |
| 851 | ;; This function is called exclusively from the before-change-functions hook. | 851 | ;; This function is called exclusively from the before-change-functions hook. |
| 852 | ;; It does two things: Finds the end of the (logical) line on which END lies, | 852 | ;; It does two things: Finds the end of the (logical) line on which END lies, |
| 853 | ;; and clears c-awk-NL-prop text properties from this point onwards. BEG is | 853 | ;; and clears c-awk-NL-prop text properties from this point onwards. BEG is |