]> git.eshelyaron.com Git - emacs.git/commitdiff
(function-p-func): Avoid `xemacs-p'.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 7 Nov 2002 23:01:30 +0000 (23:01 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 7 Nov 2002 23:01:30 +0000 (23:01 +0000)
lisp/eshell/esh-cmd.el

index 04a01f1234ec56ba6e5a003b50d5b03050efee60..624777bf8c4470533fa6bd9ef50788f3ec536ed2 100644 (file)
@@ -1060,7 +1060,7 @@ at the moment are:
   object)
 
 (defconst function-p-func
-  (if (eshell-under-xemacs-p)
+  (if (fboundp 'compiled-function-p)
       'compiled-function-p
     'byte-code-function-p))