On Wed, 2004-01-07 at 03:57, Vin Shelton wrote:
This code is supposed to check the ispell version and return the
ispell library path. It's apparently supposed to be turned off when
byte-compiling, but XEmacs has no such function as
byte-compiling-files-p (I couldn't find in fsf emacs either, but I
didn't look too hard).
GNU Emacs 21.3 has this in lisp/simple.el:
(defun byte-compiling-files-p ()
"Return t if currently byte-compiling files."
(and (boundp 'byte-compile-current-file)
(stringp byte-compile-current-file)))
Should be a trivial addition?