diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-01-01 00:49:25 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-01-01 00:49:25 -0800 |
commit | 229a84202f3fda6f175e9861208b9fc0b7fb3c34 (patch) | |
tree | 400df52071ed44e10856a9029636419bbf71b5b3 /src/window.c | |
parent | d564d06b1ce89e90e1aacc5433b5eabd38270973 (diff) |
*: return MRU object from _mru() funcs
minor ergonomic improvement; enables plain wrapping of creates or
other relevant object pointers with _mru() calls without
requiring an intermediate storage variable.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index b3e32c1..d1441f3 100644 --- a/src/window.c +++ b/src/window.c @@ -58,9 +58,11 @@ void vwm_win_map(vwm_t *vwm, vwm_window_t *vwin) /* make the specified window the most recently used one */ -void vwm_win_mru(vwm_t *vwm, vwm_window_t *vwin) +vwm_window_t * vwm_win_mru(vwm_t *vwm, vwm_window_t *vwin) { list_move(&vwin->windows_mru, &vwm->windows_mru); + + return vwin; } |