aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2022-12-25 12:59:06 +0100
committerJuanma Barranquero2022-12-25 12:59:06 +0100
commit72786ae237e66ff42385a2ac36f422ebb21072df (patch)
tree24fd16055ee6c203c7f96f0259c1d2d26bc099ce /lisp
parent940ab2423ca7c7a12aef069804435559d11f68e8 (diff)
downloademacs-72786ae237e66ff42385a2ac36f422ebb21072df.tar.gz
emacs-72786ae237e66ff42385a2ac36f422ebb21072df.zip
; Restore ARGS argument in c-ts-mode--fontify-declarator
* lisp/progmodes/c-ts-mode.el (c-ts-mode--fontify-declarator): Restore argument name referenced in the docstring.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/c-ts-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el
index 42621371ff1..1d211da1765 100644
--- a/lisp/progmodes/c-ts-mode.el
+++ b/lisp/progmodes/c-ts-mode.el
@@ -402,7 +402,7 @@ MODE is either `c' or `cpp'."
402 ((or "identifier" "field_identifier") 402 ((or "identifier" "field_identifier")
403 node))) 403 node)))
404 404
405(defun c-ts-mode--fontify-declarator (node override start end &rest _) 405(defun c-ts-mode--fontify-declarator (node override start end &rest _args)
406 "Fontify a declarator (whatever under the \"declarator\" field). 406 "Fontify a declarator (whatever under the \"declarator\" field).
407For NODE, OVERRIDE, START, END, and ARGS, see 407For NODE, OVERRIDE, START, END, and ARGS, see
408`treesit-font-lock-rules'." 408`treesit-font-lock-rules'."