summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2016-10-15 17:21:49 +0300
committerEli Zaretskii <eliz@gnu.org>2016-10-15 17:21:49 +0300
commitf68b463d1b05c7cd45b66a5cb0977c21016f5ea5 (patch)
treecf8debc55528c85f2f4bb3fdbe4ae55a596d074e /src/keyboard.c
parenta38096f8e2978a14f3bc8fa0dc3e0c9d0f753c3c (diff)
downloademacs-f68b463d1b05c7cd45b66a5cb0977c21016f5ea5.tar.gz
; * src/keyboard.c (make_lispy_event): Fix code formatting in last change.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 87a68511052..bb411e77823 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -5422,26 +5422,26 @@ make_lispy_event (struct input_event *event)
/* Caps-lock shouldn't affect interpretation of key chords:
Control+s should produce C-s whether caps-lock is on or
not. And Control+Shift+s should produce C-S-s whether
- caps-lock is on or not. */
+ caps-lock is on or not. */
if (event->modifiers & ~shift_modifier)
{
- /* this is a key chord: some non-shift modifier is
- depressed */
+ /* This is a key chord: some non-shift modifier is
+ depressed. */
if (uppercasep (c) &&
!(event->modifiers & shift_modifier))
{
/* Got a capital letter without a shift. The caps
- lock is on. Un-capitalize the letter */
- c = downcase(c);
+ lock is on. Un-capitalize the letter. */
+ c = downcase (c);
}
else if (lowercasep (c) &&
(event->modifiers & shift_modifier))
{
/* Got a lower-case letter even though shift is
depressed. The caps lock is on. Capitalize the
- letter */
- c = upcase(c);
+ letter. */
+ c = upcase (c);
}
}