From: Po Lu Date: Wed, 2 Mar 2022 11:16:53 +0000 (+0800) Subject: ; * src/termhooks.h (struct terminal): Fix typo in comment. X-Git-Tag: emacs-29.0.90~2049 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8c8093aa6f20a7a4f3799cbdb9270cac013ef71d;p=emacs.git ; * src/termhooks.h (struct terminal): Fix typo in comment. --- diff --git a/src/termhooks.h b/src/termhooks.h index 8fb4837ee57..93ac9ba0d2e 100644 --- a/src/termhooks.h +++ b/src/termhooks.h @@ -835,8 +835,8 @@ struct terminal /* Called to determine whether a position is on the toolkit tool bar or menu bar. May be NULL. It should accept five arguments FRAME, X, Y, MENU_BAR_P, TOOL_BAR_P, and store true into - `menu_bar_p' if X and Y are in FRAME's toolkit menu bar, and true - into `tool_bar_p` if X and Y are in FRAME's toolkit tool bar. */ + MENU_BAR_P if X and Y are in FRAME's toolkit menu bar, and true + into TOOL_BAR_P if X and Y are in FRAME's toolkit tool bar. */ void (*toolkit_position_hook) (struct frame *, int, int, bool *, bool *); } GCALIGNED_STRUCT;