changeset 48211:e23f9344f37d

(function-p-func): Avoid `xemacs-p'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 07 Nov 2002 23:01:30 +0000
parents eeded772a8a2
children 9043b57acb42
files lisp/eshell/esh-cmd.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/eshell/esh-cmd.el	Thu Nov 07 23:00:32 2002 +0000
+++ b/lisp/eshell/esh-cmd.el	Thu Nov 07 23:01:30 2002 +0000
@@ -1060,7 +1060,7 @@
   object)
 
 (defconst function-p-func
-  (if (eshell-under-xemacs-p)
+  (if (fboundp 'compiled-function-p)
       'compiled-function-p
     'byte-code-function-p))