aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-11-07 23:01:30 +0000
committerStefan Monnier2002-11-07 23:01:30 +0000
commit38c1b27aa551d06387d89a4ce14b67bc9aba0ac3 (patch)
tree085b6c21a6fc4468c6eb3c9c8fb78a2938d6dd77
parent6d736b085cb1f7990133a9d8ab4c87576b81cb30 (diff)
downloademacs-38c1b27aa551d06387d89a4ce14b67bc9aba0ac3.tar.gz
emacs-38c1b27aa551d06387d89a4ce14b67bc9aba0ac3.zip
(function-p-func): Avoid `xemacs-p'.
-rw-r--r--lisp/eshell/esh-cmd.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el
index 04a01f1234e..624777bf8c4 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -1060,7 +1060,7 @@ at the moment are:
1060 object) 1060 object)
1061 1061
1062(defconst function-p-func 1062(defconst function-p-func
1063 (if (eshell-under-xemacs-p) 1063 (if (fboundp 'compiled-function-p)
1064 'compiled-function-p 1064 'compiled-function-p
1065 'byte-code-function-p)) 1065 'byte-code-function-p))
1066 1066