File: read-insert.lisp

package info (click to toggle)
cmucl 21d-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 45,328 kB
  • sloc: lisp: 378,758; ansic: 30,673; asm: 2,977; sh: 1,417; makefile: 357; 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)))