
| Current Path : /proc/thread-self/root/usr/share/common-lisp/source/kmrcl/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/share/common-lisp/source/kmrcl/console.lisp |
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: console.lisp
;;;; Purpose: Console interactiion
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
;;;; and by onShore Development, Inc.
;;;;
;;;; KMRCL users are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;; *************************************************************************
(in-package #:kmrcl)
(defvar *console-msgs* t)
(defvar *console-msgs-types* nil)
(defun cmsg (template &rest args)
"Format output to console"
(when *console-msgs*
(setq template (concatenate 'string "~&;; " template "~%"))
(apply #'format t template args)))
(defun cmsg-c (condition template &rest args)
"Push CONDITION keywords into *console-msgs-types* to print console msgs
for that CONDITION. TEMPLATE and ARGS function identically to
(format t TEMPLATE ARGS) "
(when (or (member :verbose *console-msgs-types*)
(member condition *console-msgs-types*))
(apply #'cmsg template args)))
(defun cmsg-add (condition)
(pushnew condition *console-msgs-types*))
(defun cmsg-remove (condition)
(setf *console-msgs-types* (remove condition *console-msgs-types*)))
(defun fixme (template &rest args)
"Format output to console"
(setq template (concatenate 'string "~&;; ** FIXME ** " template "~%"))
(apply #'format t template args)
(values))