diff options
author | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:33:15 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:33:15 +0000 |
commit | 9c923d35fce5b829e889bf0735bdc6d37e57b929 (patch) | |
tree | 070d9c86edd6f1c3455c185bd6bc6efc4c78e88a /lisp/midnight.el | |
parent | d7f9eef0380e53729e2ea6a20cc1f0a18a46a2a2 (diff) | |
download | emacs-9c923d35fce5b829e889bf0735bdc6d37e57b929.tar.gz |
(midnight-delay-set): Remove extra format string
argument.
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 6678925eedb..37bdf065f51 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 Free Software Foundation, Inc. +;;; Copyright (C) 1998, 2004 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'" symb) + "Illegal argument to `midnight-delay-set': `%s'") (set symb tm) (when (timerp midnight-timer) (cancel-timer midnight-timer)) (setq midnight-timer |