aboutsummaryrefslogtreecommitdiff
path: root/src/interp/preparse.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/preparse.lisp')
-rw-r--r--src/interp/preparse.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/preparse.lisp b/src/interp/preparse.lisp
index 1f83d525..9c16a21e 100644
--- a/src/interp/preparse.lisp
+++ b/src/interp/preparse.lisp
@@ -105,8 +105,8 @@
(setq PSLOC SLOC)
(setq I 0 INSTRING () PCOUNT 0)
STRLOOP (setq STRSYM (OR (|findChar| #\" A I) L))
- (setq COMSYM (OR (search "--" A :start2 I ) L))
- (setq NCOMSYM (OR (search "++" A :start2 I ) L))
+ (setq COMSYM (OR (|findString| "--" A I) L))
+ (setq NCOMSYM (OR (|findString| "++" A I) L))
(setq OPARSYM (OR (|findChar| #\( A I) L))
(setq CPARSYM (OR (|findChar| #\) A I) L))
(setq N (MIN STRSYM COMSYM NCOMSYM OPARSYM CPARSYM))
@@ -141,7 +141,7 @@
((setq CONTINUE NIL)))
(if (and (null LINES) (= SLOC 0)) ;;test for skipping constructors
(if (and |$byConstructors|
- (null (search "==>" a))
+ (null (|findString| "==>" a))
(not (member (setq functor (intern
(substring a 0 (STRPOSL ": (=" A 0 NIL))))
|$byConstructors|)))