From 69708f35d8bb1cdf72144a093f000a1d630e4c6b Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Fri, 18 Feb 2022 18:47:13 +0100 Subject: [PATCH] Mark unused LANGELEM argument as unused by prefixing it with an underscore --- google-c-style.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-c-style.el b/google-c-style.el index 06a44e975..bd8bf62aa 100644 --- a/google-c-style.el +++ b/google-c-style.el @@ -34,7 +34,7 @@ ;; Wrapper function needed for Emacs 21 and XEmacs (Emacs 22 offers the more ;; elegant solution of composing a list of lineup functions or quantities with ;; operators such as "add") -(defun google-c-lineup-expression-plus-4 (langelem) +(defun google-c-lineup-expression-plus-4 (_langelem) "Indents to the beginning of the current C expression plus 4 spaces. This implements title \"Function Declarations and Definitions\"