Browse Source

org-irc port number fix

Phil Jackson 17 years ago
parent
commit
dcb2264321
2 changed files with 6 additions and 1 deletions
  1. 5 0
      ChangeLog
  2. 1 1
      org-irc.el

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2008-03-10  Phil Jackson  <phil@shellarchive.co.uk>
+
+	* org-irc.el (org-irc-get-erc-link): port now converted to a
+	string when building the link.
+
 2008-03-10  Carsten Dominik  <dominik@science.uva.nl>
 
 	* org-publish.el (org-publish-get-files): Protect against empty p.

+ 1 - 1
org-irc.el

@@ -174,7 +174,7 @@ the session itself."
 (defun org-irc-get-erc-link ()
   "Return an org compatible irc:/ link from an ERC buffer"
   (let ((link (concat erc-server-announced-name ":"
-                      erc-session-port)))
+                      (number-to-string erc-session-port))))
     (concat link "/"
             (if (and (erc-default-target)
                      (erc-channel-p (erc-default-target))