From df23a00b39503e2a69c0c263b228472fd6dbc1f7 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 19 Mar 1990 11:45:26 +0000 Subject: [PATCH] Added the FILE-COMMENT macro for RCS header usage. --- code/extensions.lisp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/code/extensions.lisp b/code/extensions.lisp index 8e7ea31c0..cd0733651 100644 --- a/code/extensions.lisp +++ b/code/extensions.lisp @@ -14,13 +14,14 @@ ;;; ********************************************************************** (in-package "EXTENSIONS") -(export '(letf* letf dovector deletef indenting-further +(export '(letf* letf dovector deletef indenting-further file-comment read-char-no-edit listen-skip-whitespace concat-pnames iterate once-only collect do-anonymous undefined-value)) (import 'lisp::whitespace-char-p) + ;;; Undefined-Value -- Public ;;; ;;; This is here until we figure out what to do with it. @@ -30,6 +31,19 @@ '%undefined%) +;;; FILE-COMMENT -- Public +;;; +(defmacro file-comment (string) + "FILE-COMMENT String + When COMPILE-FILE sees this form at top-level, it places the constant string + in the run-time source location information. DESCRIBE will print the file + comment for the file that a function was defined in. The string is also + textually present in the FASL, so the RCS \"ident\" command can find it, + etc." + (declare (ignore string)) + '(undefined-value)) + + (defun skip-whitespace (&optional (stream *standard-input*)) (loop (let ((char (read-char stream))) (if (not (lisp::whitespacep char)) -- GitLab