私は最初のエクササイズセクション(Emacs Lisp Intro)にいますが、うまくいきません。3.12演習:
`fill-column'の現在の値が関数に渡された引数より大きいかどうかをテストする関数を記述し、大きい場合は適切なメッセージを出力します。
私は持っています:
(defun is-fill-equal (number)
"Is fill-column greater than the argument passed to the function."
(interactive "p")
(if (= fill-column number)
(message "They are equal.")
(message "They are not equal."))
何を試しても、このエラーが発生します。
デバッガーが入力されました--Lispエラー:(void-変数番号)