machine-* functions return NIL
authorDavid Vázquez <davazp@gmail.com>
Thu, 6 Mar 2014 12:23:16 +0000 (13:23 +0100)
committerDavid Vázquez <davazp@gmail.com>
Thu, 6 Mar 2014 12:23:16 +0000 (13:23 +0100)
src/misc.lisp

index c55fc45..0ad60de 100644 (file)
 (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)))