File: read-insert.lisp

package info (click to toggle)
cmucl 21a-4
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 50,060 kB
  • sloc: lisp: 375,822; ansic: 30,304; asm: 2,977; sh: 1,372; makefile: 355; csh: 31
file content (11 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
(in-package :cl-haml)

(defun read-haml-insert-line (stream &optional (eof-error-p nil)
                                               (eof-value +eof+))
  (list +haml+
        (read-contents stream
                       (read-options stream
                                     eof-error-p
                                     eof-value)
                       eof-error-p
                       eof-value)))