diff options
author | rbuj <[email protected]> | 2020-08-04 10:39:44 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-04 16:39:25 +0200 |
commit | 85a22e754cd1f43e178e4a81c182643d4319bc5b (patch) | |
tree | ec52f20880ba991d7abcc863de2a9c302ddf2d41 /src/core/workspace.c | |
parent | 29f0d1d7ddd859433bf953fba3861a4746b3f09a (diff) | |
download | marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.bz2 marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.xz |
Remove trailing spaces/tabs
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \;
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \;
Diffstat (limited to 'src/core/workspace.c')
-rw-r--r-- | src/core/workspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/workspace.c b/src/core/workspace.c index 04ba575b..e2960a41 100644 --- a/src/core/workspace.c +++ b/src/core/workspace.c @@ -388,7 +388,7 @@ meta_workspace_activate_with_focus (MetaWorkspace *workspace, /* Note that old can be NULL; e.g. when starting up */ old = workspace->screen->active_workspace; - + /* Save old workspace, to be able to switch back. */ workspace->screen->prev_workspace = old; |