summaryrefslogtreecommitdiff
path: root/test/manual/cedet/srecode-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/manual/cedet/srecode-tests.el')
-rw-r--r--test/manual/cedet/srecode-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/manual/cedet/srecode-tests.el b/test/manual/cedet/srecode-tests.el
index b849d7a6039..63d10973e51 100644
--- a/test/manual/cedet/srecode-tests.el
+++ b/test/manual/cedet/srecode-tests.el
@@ -68,13 +68,13 @@ It is filled with some text."
(when (or (not (slot-boundp f 'overlay)) (not (oref f overlay)))
(error "Field test: Overlay info not created for field"))
- (when (and (overlay-p (oref f overlay))
+ (when (and (overlayp (oref f overlay))
(not (overlay-get (oref f overlay) 'srecode-init-only)))
(error "Field creation overlay is not tagged w/ init flag"))
(srecode-overlaid-activate f)
- (when (or (not (overlay-p (oref f overlay)))
+ (when (or (not (overlayp (oref f overlay)))
(overlay-get (oref f overlay) 'srecode-init-only))
(error "New field overlay not created during activation"))