Skip to content

Commit

Permalink
Removed &rest from initialize-instance in obby/rudel-obby.el
Browse files Browse the repository at this point in the history
* obby/rudel-obby.el (rudel-obby-backend::initialize-instance):
  removed &rest from slots arguments
  • Loading branch information
scymtym committed Mar 14, 2010
1 parent 05be01d commit 484cd39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions obby/rudel-obby.el
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ multiple chunks.")
"Main class of the Rudel obby backend. Creates obby client
connections and creates obby servers.")

(defmethod initialize-instance ((this rudel-obby-backend) &rest slots)
(defmethod initialize-instance ((this rudel-obby-backend) slots)
"Initialize slots of THIS with SLOTS."
(when (next-method-p)
(call-next-method))
Expand Down Expand Up @@ -148,7 +148,7 @@ Return the connection object."

;; Create the network process
(let* ((session (plist-get info :session))
(host (plist-get info :host))
(host (plist-get info :host)) ;; Just as name
(encryption (plist-get info :encryption))
(connection (rudel-obby-connection
host
Expand Down

0 comments on commit 484cd39

Please sign in to comment.