diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index d4f0e0d..8560128 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -634,7 +634,8 @@ ligatures for ‘c-ts-mode’, the following two entries could be added: c-auto-newline t c-hungry-delete-key t) -(defun x-c-defun-open-safe (_syntax _position) +(defun x-c-defun-open-safe (syntax position) + (declare (ignore syntax position)) (if (c-cpp-define-name) '(after) '(before after))) |