diff --git a/core/vocabs/vocabs.factor b/core/vocabs/vocabs.factor index b47053071f..656f040c75 100644 --- a/core/vocabs/vocabs.factor +++ b/core/vocabs/vocabs.factor @@ -85,8 +85,8 @@ GENERIC: vocab-changed ( vocab obj -- ) vocab-observers get [ vocab-changed ] with each ; : create-vocab ( name -- vocab ) - check-vocab-name dictionary get - [ dup notify-vocab-observers ] cache ; + check-vocab-name dictionary get [ ] cache + dup notify-vocab-observers ; ERROR: no-vocab name ;