changeset 72302:ddc702799326

Fix ERC bug introduced in last patch Revision: emacs@sv.gnu.org/emacs--devo--0--patch-387 Creator: Michael Olson <mwolson@gnu.org>
author Miles Bader <miles@gnu.org>
date Mon, 07 Aug 2006 07:43:37 +0000
parents 0bacf06559e2
children 430a916ae2ba
files lisp/erc/ChangeLog lisp/erc/erc.el
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/erc/ChangeLog	Mon Aug 07 07:43:25 2006 +0000
+++ b/lisp/erc/ChangeLog	Mon Aug 07 07:43:37 2006 +0000
@@ -2,6 +2,7 @@
 
 	* erc.el (erc-arrange-session-in-multiple-windows): Fix bug with
 	multi-tty Emacs.
+	(erc-select-startup-file): Fix bug introduced by recent change.
 
 2006-08-05  Michael Olson  <mwolson@gnu.org>
 
--- a/lisp/erc/erc.el	Mon Aug 07 07:43:25 2006 +0000
+++ b/lisp/erc/erc.el	Mon Aug 07 07:43:37 2006 +0000
@@ -5244,7 +5244,7 @@
 See also `erc-startup-file-list'."
   (catch 'found
     (dolist (f erc-startup-file-list)
-      (setq f (convert-standard-file-name f))
+      (setq f (convert-standard-filename f))
       (when (file-readable-p f)
 	(throw 'found f)))))