From 5536a8f3b50f256bb82849512e0270fe926b875b Mon Sep 17 00:00:00 2001 Message-Id: <5536a8f3b50f256bb82849512e0270fe926b875b.1715296133.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 26 Mar 2017 15:16:18 +0100 Subject: [PATCH] src/module-impl.lisp (c-fragment): Fix docstring formatting. Organization: Straylight/Edgeware From: Mark Wooding --- src/module-impl.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module-impl.lisp b/src/module-impl.lisp index 2626726..cb3a8ad 100644 --- a/src/module-impl.lisp +++ b/src/module-impl.lisp @@ -153,8 +153,8 @@ (defclass c-fragment () (:documentation "Represents a fragment of C code to be written to an output file. - A C fragment is aware of its original location, and will bear proper #line - markers when written out.")) + A C fragment is aware of its original location, and will bear proper + `#line' markers when written out.")) (defun output-c-excursion (stream location func) "Invoke FUNC surrounding it by writing #line markers to STREAM. -- [mdw]