Changeset 1b20da0 in mainline for uspace/dist/src/c/demos/edit/edit.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/src/c/demos/edit/edit.c

    rdf6ded8 r1b20da0  
    8383        keymod_t keymod;
    8484
    85         /** 
     85        /**
    8686         * Ideal column where the caret should try to get. This is used
    8787         * for maintaining the same column during vertical movement.
     
    11591159
    11601160/** Find beginning of a word to the left of spt */
    1161 static spt_t pt_find_word_left(spt_t spt) 
     1161static spt_t pt_find_word_left(spt_t spt)
    11621162{
    11631163        do {
     
    11681168
    11691169/** Find beginning of a word to the right of spt */
    1170 static spt_t pt_find_word_right(spt_t spt) 
     1170static spt_t pt_find_word_right(spt_t spt)
    11711171{
    11721172        do {
     
    11761176}
    11771177
    1178 static void caret_move_word_left(bool select) 
     1178static void caret_move_word_left(bool select)
    11791179{
    11801180        spt_t pt;
     
    11841184}
    11851185
    1186 static void caret_move_word_right(bool select) 
     1186static void caret_move_word_right(bool select)
    11871187{
    11881188        spt_t pt;
Note: See TracChangeset for help on using the changeset viewer.