cvs 模块文件中的空格

Whitespaces in cvs modules file

我正在尝试将一些带有空格的文件添加到我的 CVS 模块文件中,但不知道如何写它的名称。

尝试使用“、'、\”、\'。 什么都没用。

怎么做?

模块名称中不能有空格。模块文件的解析器为 simple as it gets 并将在第一个空格处停止以生成模块名称:

while (*vp && !isspace ((unsigned char) *vp))
    vp++;
if (*vp)
    *vp++ = '[=10=]';       /* NULL terminate the key */
p->type = NDBMNODE;
p->key = xstrdup (kp);