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
Add icon as menu bar item.
CLOG-GUI - Window System
[generic-function] CURRENT-WINDOW CLOG-OBJ
+ +Get the current selected clog-gui-window
[generic-function] SET-ON-WINDOW-CHANGE CLOG-OBJ HANDLER
+ +Set the on-window-change HANDLER.
+The on-window-change clog-obj received is the new window
CLOG-GUI - Individual Windows
[generic-function] CREATE-GUI-WINDOW CLOG-OBJ &KEY TITLE CONTENT LEFT TOP WIDTH HEIGHT HTML-ID
+ +Create a clog-gui-window
[generic-function] WINDOW-TITLE CLOG-GUI-WINDOW
+ +Get/setf window title
[generic-function] WINDOW-CONTENT CLOG-GUI-WINDOW
+ +Get window content element.
[generic-function] SET-ON-WINDOW-CAN-CLOSE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-can-close HANDLER
[generic-function] SET-ON-WINDOW-CLOSE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-close HANDLER
[generic-function] SET-ON-WINDOW-CAN-MOVE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-can-move HANDLER
[generic-function] SET-ON-WINDOW-CAN-SIZE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-can-size HANDLER
[generic-function] SET-ON-WINDOW-MOVE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-move HANDLER
[generic-function] SET-ON-WINDOW-SIZE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-size HANDLER
[generic-function] SET-ON-WINDOW-MOVE-DONE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-move-done HANDLER
[generic-function] SET-ON-WINDOW-SIZE-DONE CLOG-GUI-WINDOW HANDLER
+ +Set the on-window-size-done HANDLER
@@ -5002,7 +5120,7 @@ on-storage event is fired for changes to :local storage keys.