aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.h
diff options
context:
space:
mode:
authorStefan Monnier2015-08-14 15:29:11 -0400
committerStefan Monnier2015-08-14 15:29:11 -0400
commite1e33f201698229ae30a29c7008c3f6a3635d71f (patch)
tree0ecec98e36275190220f2c1e61b2f7ed7bab5e39 /src/keyboard.h
parent59ff39dca6e5b85b03ec5453d256382e06771ab3 (diff)
downloademacs-e1e33f201698229ae30a29c7008c3f6a3635d71f.tar.gz
emacs-e1e33f201698229ae30a29c7008c3f6a3635d71f.zip
* src/keyboard.c: Use false/true instead of 0/1 for booleans
* src/keyboard.h (struct kboard): Mark kbd_queue_has_data as boolean.
Diffstat (limited to 'src/keyboard.h')
-rw-r--r--src/keyboard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.h b/src/keyboard.h
index b843e8db903..3e4c475d285 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -170,7 +170,7 @@ struct kboard
170 kbd_queue_has_data is 0. When we push back an incomplete 170 kbd_queue_has_data is 0. When we push back an incomplete
171 command, then this flag is 0, meaning we don't want to try 171 command, then this flag is 0, meaning we don't want to try
172 reading from this KBOARD again until more input arrives. */ 172 reading from this KBOARD again until more input arrives. */
173 char kbd_queue_has_data; 173 bool_bf kbd_queue_has_data;
174 174
175 /* True means echo each character as typed. */ 175 /* True means echo each character as typed. */
176 bool_bf immediate_echo : 1; 176 bool_bf immediate_echo : 1;