]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/keyboard.c (make_lispy_event): Fix code formatting in last change.
authorEli Zaretskii <eliz@gnu.org>
Sat, 15 Oct 2016 14:21:49 +0000 (17:21 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 15 Oct 2016 14:21:49 +0000 (17:21 +0300)
src/keyboard.c

index 87a68511052caab00563402b7fd663a41c4534fe..bb411e7782351a58def5e9a2d46d87165c8ddc41 100644 (file)
@@ -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);
             }
         }