aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-11-19 04:38:16 +0000
committerGlenn Morris2008-11-19 04:38:16 +0000
commit688d0744509406fc51ae09bb9ba22760d9a78543 (patch)
tree97bdd655bcb8ba498d46b2cbb72c751cbbeb295e
parent68fcc3ec7d4c2817007c0a167b660897fd82af0e (diff)
downloademacs-688d0744509406fc51ae09bb9ba22760d9a78543.tar.gz
emacs-688d0744509406fc51ae09bb9ba22760d9a78543.zip
(help-function-arglist): Autoload it.
-rw-r--r--lisp/erc/ChangeLog4
-rw-r--r--lisp/erc/erc-compat.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index 3d1ac3baab0..8f641bc07fd 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,7 @@
12008-11-19 Glenn Morris <rgm@gnu.org>
2
3 * erc-compat.el (help-function-arglist): Autoload it.
4
12008-10-03 Michael Olson <mwolson@gnu.org> 52008-10-03 Michael Olson <mwolson@gnu.org>
2 6
3 * erc-dcc.el (english): Increase size heading by two places. 7 * erc-dcc.el (english): Increase size heading by two places.
diff --git a/lisp/erc/erc-compat.el b/lisp/erc/erc-compat.el
index 5cb7b82e2d4..b56c4ead3e4 100644
--- a/lisp/erc/erc-compat.el
+++ b/lisp/erc/erc-compat.el
@@ -1,6 +1,7 @@
1;;; erc-compat.el --- ERC compatibility code for XEmacs 1;;; erc-compat.el --- ERC compatibility code for XEmacs
2 2
3;; Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 3;; Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008
4;; Free Software Foundation, Inc.
4 5
5;; Author: Alex Schroeder <alex@gnu.org> 6;; Author: Alex Schroeder <alex@gnu.org>
6;; URL: http://www.emacswiki.org/cgi-bin/wiki/ERC 7;; URL: http://www.emacswiki.org/cgi-bin/wiki/ERC
@@ -44,6 +45,7 @@ See `erc-encoding-coding-alist'."
44 45
45(defalias 'erc-propertize 'propertize) 46(defalias 'erc-propertize 'propertize)
46(defalias 'erc-view-mode-enter 'view-mode-enter) 47(defalias 'erc-view-mode-enter 'view-mode-enter)
48(autoload 'help-function-arglist "help-fns")
47(defalias 'erc-function-arglist 'help-function-arglist) 49(defalias 'erc-function-arglist 'help-function-arglist)
48(defalias 'erc-delete-dups 'delete-dups) 50(defalias 'erc-delete-dups 'delete-dups)
49(defalias 'erc-replace-regexp-in-string 'replace-regexp-in-string) 51(defalias 'erc-replace-regexp-in-string 'replace-regexp-in-string)