如何将列表转换为字符串,以便可以用它调用insertmessage?我需要显示c-offsets-alist,但是我得到Wrong type argument: char-or-string-p用于插入,或者得到Wrong type argument: stringp用于消息。

最佳答案

我不确定您要实现的目标,但是format将“东西”转换为字符串。例如:

(format "%s" your-list)

将返回您的列表的表示形式。 message在内部使用格式,因此
(message "%s" your-list)

会打印出来

关于string - 如何在Emacs Lisp中将列表转换为字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18979300/

10-12 14:00