Skip to content

Commit

Permalink
Tightening up the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyatt committed Apr 29, 2010
1 parent 64d993b commit 8bddd9a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lisp/wave-client-browser-channel.el
Expand Up @@ -37,7 +37,9 @@
(eval-and-compile
(require 'cl)
(require 'json)
(require 'url))
(require 'url)
(require 'wave-util)
(require 'wave-data))


(defcustom wave-client-server
Expand Down Expand Up @@ -665,6 +667,6 @@ list of data pieces to post."
(defun wave-bc-get-wave (wave-id)
(wave-client-extract-wave (wave-client-get-wave-raw wave-id)))

(provide 'wave-client)
(provide 'wave-client-browser-channel)

;;; wave-client.el ends here
3 changes: 3 additions & 0 deletions lisp/wave-client-websocket.el
Expand Up @@ -35,6 +35,9 @@

;;; Code:
(eval-and-compile
(require 'cl)
(require 'json)
(require 'wave-data)
(require 'wave-util)
(require 'url))

Expand Down
2 changes: 2 additions & 0 deletions lisp/wave-data.el
Expand Up @@ -275,3 +275,5 @@ the websocket backend does, so we use its format verbatim.
)))
(assert (endp init) t "Operation did not traverse entire document, remainder: %S")
(wave-normalize-doc-init (nreverse accu))))

(provide 'wave-data)

0 comments on commit 8bddd9a

Please sign in to comment.