Skip to content

Commit 1250d3f

Browse files
authored
Merge branch 'master' into fix-format-interrupt
2 parents 09585bf + e9bda60 commit 1250d3f

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ references:
44
setup-tex: &setup-tex
55
run:
66
name: Setup TeX
7-
command: sudo apt-get install -qq -y texlive-latex-base ptex-bin latex2html nkf poppler-utils
7+
command: |-
8+
sudo apt-get update
9+
sudo apt-get install -qq -y texlive-latex-base ptex-bin latex2html nkf poppler-utils
810
setup-eus: &setup-eus
911
run:
1012
name: Setup EusLisp

lib/llib/unittest.l

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -232,19 +232,17 @@
232232
(trace ,name))))
233233

234234
(defmacro assert (pred &optional (message "") &rest args)
235-
(let
236-
((ret (gensym)))
237-
`(let* (failure (ret ,pred))
238-
;; lisp::step could not work with macros..
239-
;; (if (and (listp ',pred) (functionp (car ',pred)))
240-
;; (setq ret (lisp::step ,pred))
241-
;; (setq ret ,pred))
242-
;;
243-
(if (not ret)
244-
;; escape <> for xml
245-
(send *unit-test* :increment-failure ',pred (format nil ,message ,@args)
246-
(escape-xml-string (subseq (send *error-output* :buffer) 0 (or (position 0 (send *error-output* :buffer)) (length (send *error-output* :buffer)))))))
247-
)))
235+
`(let (failure (ret ,pred))
236+
;; lisp::step could not work with macros..
237+
;; (if (and (listp ',pred) (functionp (car ',pred)))
238+
;; (setq ret (lisp::step ,pred))
239+
;; (setq ret ,pred))
240+
;;
241+
(if (not ret)
242+
;; escape <> for xml
243+
(send *unit-test* :increment-failure ',pred (format nil ,message ,@args)
244+
(escape-xml-string (subseq (send *error-output* :buffer) 0 (or (position 0 (send *error-output* :buffer)) (length (send *error-output* :buffer)))))))
245+
))
248246

249247

250248
t))

lisp/l/eusstart.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
;; LEO
3636
(export '(self class))
3737
;; classnames, variable names are exported by 'basicclass'
38-
(export '(string float-vector interger-vector bit-vector))
38+
(export '(string float-vector integer-vector bit-vector))
3939
;; feature constants
4040
(export '(vax sun apollo mips sun3 sun4 news sanyo bsd4_2 sunos4
4141
sunos4.1 system5 coff alpha thread))

lisp/l/exports.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
;; LEO
3333
(export '(self class))
3434
;; classnames, variable names are exported by 'basicclass'
35-
(export '(string float-vector interger-vector bit-vector))
35+
(export '(string float-vector integer-vector bit-vector))
3636
;; feature constants
3737
(export '(vax sun apollo mips sun3 sun4 news sanyo bsd4_2 sunos4
3838
sunos4.1 system5 coff alpha thread))

0 commit comments

Comments
 (0)