I'm on the first exercise section (Emacs Lisp Intro) and I'm not getting it; 3.12 exercises:
Write a function that tests whether the current value of `fill-column' is greater than the argument passed to the function, and if so, prints an appropriate message.
I have:
(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."))
No matter what I try I get this error:
Debugger entered--Lisp error: (void-variable number)