aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-03-09 21:19:37 +0100
committerDundar Göc <gocdundar@gmail.com>2022-03-10 09:14:12 +0100
commit7e3bdc75e44b9139d8afaea4381b53ae78b15746 (patch)
tree47547273268e887fa59b5529d6afde46772a7254 /src/nvim/eval
parentd0cb8744d84822209edd0ac242f2400c784e6dc5 (diff)
downloadrneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.gz
rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.bz2
rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.zip
refactor(uncrustify): format all c files
Diffstat (limited to 'src/nvim/eval')
-rw-r--r--src/nvim/eval/typval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/eval/typval.c b/src/nvim/eval/typval.c
index d492c67877..2a432ecb47 100644
--- a/src/nvim/eval/typval.c
+++ b/src/nvim/eval/typval.c
@@ -1171,10 +1171,10 @@ void callback_put(Callback *cb, typval_T *tv)
func_ref(cb->data.funcref);
break;
case kCallbackLua:
- // TODO(tjdevries): Unified Callback.
- // At this point this isn't possible, but it'd be nice to put
- // these handled more neatly in one place.
- // So instead, we just do the default and put nil
+ // TODO(tjdevries): Unified Callback.
+ // At this point this isn't possible, but it'd be nice to put
+ // these handled more neatly in one place.
+ // So instead, we just do the default and put nil
default:
tv->v_type = VAR_SPECIAL;
tv->vval.v_special = kSpecialVarNull;