Closed dotemacs closed 12 years ago
When compiling egg.el, the following errors would pop up:
Warning: `goto-line' used from Lisp code That command is designed for interactive use only
And as the documentation states: This function is usually the wrong thing to use in a Lisp program. What you probably want instead is something like:
(goto-char (point-min)) (forward-line (1- N))
Thanks
I merged it thank you.
When compiling egg.el, the following errors would pop up:
And as the documentation states: This function is usually the wrong thing to use in a Lisp program. What you probably want instead is something like:
Thanks