X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/362b9d483c714a8fd87966ddbd8686850f870e34..85ba4cded3ef5a834c880edfdb6cf7ec3a747e9b:/lisp/eshell/em-banner.el diff --git a/lisp/eshell/em-banner.el b/lisp/eshell/em-banner.el index 8600bf4891..ce987f132e 100644 --- a/lisp/eshell/em-banner.el +++ b/lisp/eshell/em-banner.el @@ -1,7 +1,6 @@ ;;; em-banner.el --- sample module that displays a login banner -;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -;; 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +;; Copyright (C) 1999-2011 Free Software Foundation, Inc. ;; Author: John Wiegley @@ -65,8 +64,9 @@ This can be any sexp, and should end with at least two newlines." (put 'eshell-banner-message 'risky-local-variable t) -(defcustom eshell-banner-load-hook '(eshell-banner-initialize) +(defcustom eshell-banner-load-hook nil "A list of functions to run when `eshell-banner' is loaded." + :version "24.1" ; removed eshell-banner-initialize :type 'hook :group 'eshell-banner) @@ -82,19 +82,10 @@ This can be any sexp, and should end with at least two newlines." (assert msg) (eshell-interactive-print msg)))) -(eshell-deftest banner banner-displayed - "Startup banner is displayed at point-min" - (assert eshell-banner-message) - (let ((msg (eval eshell-banner-message))) - (assert msg) - (goto-char (point-min)) - (looking-at msg))) - (provide 'em-banner) ;; Local Variables: ;; generated-autoload-file: "esh-groups.el" ;; End: -;; arch-tag: e738b4ef-8671-42ae-a757-291779b92491 ;;; em-banner.el ends here