X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/blobdiff_plain/da901cf29aae60b244bd9fcee72a5a2f59d359f2..3ee33e04477ace9d13587f28253fb8c6d1c7ed6c:/src/parser/parser-proto.lisp diff --git a/src/parser/parser-proto.lisp b/src/parser/parser-proto.lisp index 7aafe45..ed439f9 100644 --- a/src/parser/parser-proto.lisp +++ b/src/parser/parser-proto.lisp @@ -606,7 +606,7 @@ (defgeneric parser-capture-place (context) The return value may later be used with `parser-restore-place'. Be careful: all of this is happening at macro-expansion time.") (:method (context) - (error "Parser context ~S doesn't support rewinding." context))) + (error "Parser context ~S doesn't support rewinding" context))) (export 'parser-restore-place) (defgeneric parser-restore-place (context place) @@ -683,7 +683,7 @@ (defparse peek (:context (context t) parser) (defun commit-peeked-place () "Called by `commit' not lexically within `peek'." - (error "`commit' is not within `peek'.")) + (error "`commit' is not within `peek'")) (export 'commit) (defparse commit ()