Changeset 1b20da0 in mainline for uspace/app/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/app/edit/edit.c

    rdf6ded8 r1b20da0  
    8484        keymod_t keymod;
    8585
    86         /** 
     86        /**
    8787         * Ideal column where the caret should try to get. This is used
    8888         * for maintaining the same column during vertical movement.
     
    12261226
    12271227/** Find beginning of a word to the left of spt */
    1228 static spt_t pt_find_word_left(spt_t spt) 
     1228static spt_t pt_find_word_left(spt_t spt)
    12291229{
    12301230        do {
     
    12351235
    12361236/** Find beginning of a word to the right of spt */
    1237 static spt_t pt_find_word_right(spt_t spt) 
     1237static spt_t pt_find_word_right(spt_t spt)
    12381238{
    12391239        do {
     
    12431243}
    12441244
    1245 static void caret_move_word_left(bool select) 
     1245static void caret_move_word_left(bool select)
    12461246{
    12471247        spt_t pt;
     
    12511251}
    12521252
    1253 static void caret_move_word_right(bool select) 
     1253static void caret_move_word_right(bool select)
    12541254{
    12551255        spt_t pt;
Note: See TracChangeset for help on using the changeset viewer.