libfuse / python-fuse

Python 2.x/3.x bindings for libfuse 2.x
GNU Lesser General Public License v2.1
289 stars 76 forks source link

Remove trailing space on files #65

Closed glensc closed 9 months ago

glensc commented 9 months ago

Noticed aa0eebb273ddebd94c39e0429f60712f22c047da introduced a traling space, so fixed in all codebase.

glensc commented 9 months ago

the space vs tab use in .c source is odd, it's using spaces and tabs for identing. should imho use only one style.

it's like someone having tabstop=8 but trying to ident with tabstop=4. would be better to set vim modeline ts=4:sw=4 and reformat with all tabs. I think indent program can do that automatically using some "kr" style.