私はEmacsLispでのプログラミング入門を読んでいて、次のように見えます。
このコードは機能します:
(message "The name of this buffer is: %s." (buffer-name))
これは失敗しますが:
(message "The name of this buffer is: %s." buffer-name)
ただし、このコードは機能します。
(message "The value of fill-column is %d." fill-column)
これは失敗しますが:
(message "The value of fill-column is %d." (fill-column))
私の質問はなぜですか?buffer-name
との違いは何fill-column
ですか?かっこをいつ使用するかはどうすればわかりますか?