Skip to content

Commit

Permalink
Renamed rudel-end-session to rudel-leave-session
Browse files Browse the repository at this point in the history
* rudel.el (rudel-end-session): changed
rudel-end-session to rudel-leave-session
* rudel-mode.el (rudel-minor-keymap): likewise
  • Loading branch information
holtzermann17 committed Jul 25, 2010
1 parent beca830 commit 38be983
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,5 +1,10 @@
2010-07-25 Joseph Corneli <holtzermann17@gmail.com> 2010-07-25 Joseph Corneli <holtzermann17@gmail.com>


Renamed rudel-end-session to rudel-leave-session
* rudel.el (rudel-end-session): changed
rudel-end-session to rudel-leave-session
* rudel-mode.el (rudel-minor-keymap): likewise

Renamed rudel-unpublish-buffer to rudel-unsubscribe Renamed rudel-unpublish-buffer to rudel-unsubscribe
* rudel.el (rudel-attach-to-buffer): changed * rudel.el (rudel-attach-to-buffer): changed
rudel-unpublish-buffer to rudel-unsubscribe rudel-unpublish-buffer to rudel-unsubscribe
Expand Down
2 changes: 1 addition & 1 deletion rudel-mode.el
Expand Up @@ -541,7 +541,7 @@ line publish state mode; otherwise, turn it off."
'("Rudel" '("Rudel"
[ "Join Session" rudel-join-session [ "Join Session" rudel-join-session
(not rudel-current-session) ] (not rudel-current-session) ]
[ "Leave Session" rudel-end-session [ "Leave Session" rudel-leave-session
rudel-current-session ] rudel-current-session ]
"---" "---"
[ "Host a Session" rudel-host-session [ "Host a Session" rudel-host-session
Expand Down
6 changes: 3 additions & 3 deletions rudel.el
Expand Up @@ -938,13 +938,13 @@ will be prompted for."
session)) session))


;;;###autoload ;;;###autoload
(defun rudel-end-session () (defun rudel-leave-session ()
"End the current collaborative editing session." "Leave the current collaborative editing session."
(interactive) (interactive)
(unless rudel-current-session (unless rudel-current-session
(error "No active Rudel session")) (error "No active Rudel session"))


;; Actually end the session. ;; Close the connection.
(rudel-end rudel-current-session) (rudel-end rudel-current-session)
) )


Expand Down

0 comments on commit 38be983

Please sign in to comment.