diff options
author | Werner LEMBERG <wl@gnu.org> | 2005-03-25 08:23:21 +0000 |
---|---|---|
committer | Werner LEMBERG <wl@gnu.org> | 2005-03-25 08:23:21 +0000 |
commit | 320cb80d2753ce9f99dd3f8aa014172de94a26d8 (patch) | |
tree | ddfb2465f168d1568e1dd75cf2fb991f4f60ef9b /lisp/midnight.el | |
parent | 7bd10db569d3711e58365200a685c0cc6c7e7723 (diff) | |
download | emacs-320cb80d2753ce9f99dd3f8aa014172de94a26d8.tar.gz |
* midnight.el: Replace `illegal' with `invalid'.
Diffstat (limited to 'lisp/midnight.el')
-rw-r--r-- | lisp/midnight.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/midnight.el b/lisp/midnight.el index 37bdf065f51..a81ce37856a 100644 --- a/lisp/midnight.el +++ b/lisp/midnight.el @@ -1,6 +1,6 @@ ;;; midnight.el --- run something every midnight, e.g., kill old buffers -;;; Copyright (C) 1998, 2004 Free Software Foundation, Inc. +;;; Copyright (C) 1998, 2004, 2005 Free Software Foundation, Inc. ;; Author: Sam Steingold <sds@usa.net> ;; Maintainer: Sam Steingold <sds@usa.net> @@ -215,7 +215,7 @@ the time when it is run.") Sets the first argument SYMB (which must be symbol `midnight-delay') to its second argument TM." (assert (eq symb 'midnight-delay) t - "Illegal argument to `midnight-delay-set': `%s'") + "Invalid argument to `midnight-delay-set': `%s'") (set symb tm) (when (timerp midnight-timer) (cancel-timer midnight-timer)) (setq midnight-timer |