=================================================================== RCS file: /cvs/mandoc/tag.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mandoc/tag.c 2015/10/06 18:32:20 1.8 +++ mandoc/tag.c 2015/10/11 22:00:52 1.9 @@ -1,4 +1,4 @@ -/* $Id: tag.c,v 1.8 2015/10/06 18:32:20 schwarze Exp $ */ +/* $Id: tag.c,v 1.9 2015/10/11 22:00:52 schwarze Exp $ */ /* * Copyright (c) 2015 Ingo Schwarze * @@ -125,7 +125,7 @@ tag_put(const char *s, int prio, size_t line) size_t len; unsigned int slot; - if (tag_files.tfd <= 0) + if (tag_files.tfd <= 0 || strchr(s, ' ') != NULL) return; slot = ohash_qlookup(&tag_data, s); entry = ohash_find(&tag_data, slot);