Changeset 850fd32 in mainline for uspace/app/edit/edit.c


Ignore:
Timestamp:
2018-03-11T01:21:19Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
84239b1, f0e825d
Parents:
338d54a7
Message:

Fix mischievious semicolons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/edit.c

    r338d54a7 r850fd32  
    655655
    656656                        /* Handle key press. */
    657                         if (((kev->mods & KM_ALT) == 0) &&
    658                              (kev->mods & KM_CTRL) != 0) {
    659                                 ;
    660                         } else if ((kev->mods & (KM_CTRL | KM_ALT)) == 0) {
     657                        if ((kev->mods & (KM_CTRL | KM_ALT)) == 0) {
    661658                                switch (kev->key) {
    662659                                case KC_ESCAPE:
Note: See TracChangeset for help on using the changeset viewer.