From: David Vázquez Date: Thu, 6 Mar 2014 12:23:16 +0000 (+0100) Subject: machine-* functions return NIL X-Git-Url: http://repo.macrolet.net/gitweb/?p=jscl.git;a=commitdiff_plain;h=05b3840a974805eae28a84dd2986e55d5deac91d machine-* functions return NIL --- diff --git a/src/misc.lisp b/src/misc.lisp index c55fc45..0ad60de 100644 --- a/src/misc.lisp +++ b/src/misc.lisp @@ -23,6 +23,19 @@ (defun lisp-implementation-version () #.*version*) +;;; Javascript has not access to the hardware. Would it make sense to +;;; have the browser data as machine abstraction instead? + +(defun machine-instance () + nil) + +(defun machine-version () + nil) + +(defun machine-type () + nil) + + (defmacro time (form) (let ((start (gensym)) (end (gensym)))