是否有一种在m4宏中统一缩进文本块的好方法?换句话说,宏
define(`mytext',dnl
This is
a
piece of text
that I would like
to indent)
mytext生成
This is
a
piece of text
that I would like
to indent我希望有一种方法将整块文本缩进指定的数量。
发布于 2015-03-18 20:20:05
帕次斯特怎么样?
patsubst(mytext,`^', ` ')https://stackoverflow.com/questions/29026753
复制相似问题