diff --git a/demos/03-demo.lisp b/demos/03-demo.lisp index b0652dc..bfa4581 100644 --- a/demos/03-demo.lisp +++ b/demos/03-demo.lisp @@ -40,6 +40,7 @@ (create-label form :content "File Name:"))) (ok (create-button form :content "OK"))) (set-on-click ok (lambda (obj) + (declare (ignore obj)) (remove-from-dom win) (funcall on-file-name (value input)))))) @@ -157,7 +158,8 @@ :left (- (/ (width (body app)) 2) 100) :width 200 :height 200))) - (set-on-window-can-size about (lambda (obj)())))) + (set-on-window-can-size about (lambda (obj) + (declare (ignore obj))())))) (defun on-new-window (body) (let ((app (make-instance 'app-data))) diff --git a/doc/clog-manual.html b/doc/clog-manual.html index d4647d2..56a8d21 100644 --- a/doc/clog-manual.html +++ b/doc/clog-manual.html @@ -542,7 +542,8 @@ lisp and the HTML DOM element.

Get connection-data that is associated with clog-obj that will persist regardless of thread. The event hooks are stored in this string based hash in the format of: -"html-id:event-name" => #'event-handler.

+"html-id:event-name" => #'event-handler. clog-* keys are reserved +for internal use of clog.

@@ -4450,6 +4451,8 @@ is nil unbind the event.

clog-gui object on connection.

+

CLOG-GUI - Menus

+

+

CLOG-GUI - Window System

+ +

+ + + +

+ + + +

CLOG-GUI - Individual Windows

+ +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + +

@@ -5002,7 +5120,7 @@ on-storage event is fired for changes to :local storage keys.