diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-06 04:09:57 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-06 04:09:57 +0000 |
commit | 5cec305694c24f57f0cb0b46a089323d18274142 (patch) | |
tree | 3044500a0ecfe8da7ef0d52524c6c1eea7abaccf /lisp/emacs-lisp | |
parent | 292071b483f53e5b8fa8541f1de08ba5ba4f211a (diff) | |
download | emacs-5cec305694c24f57f0cb0b46a089323d18274142.tar.gz emacs-5cec305694c24f57f0cb0b46a089323d18274142.tar.bz2 emacs-5cec305694c24f57f0cb0b46a089323d18274142.zip |
Remove directory part from filenames in function declarations.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/timer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/timer.el b/lisp/emacs-lisp/timer.el index 023a4a3e4b7..b11f7ca9d5c 100644 --- a/lisp/emacs-lisp/timer.el +++ b/lisp/emacs-lisp/timer.el @@ -357,7 +357,7 @@ This function is called, by name, directly by the C code." (and (listp event) (eq (car event) 'timer-event))) -(declare-function diary-entry-time "../calendar/diary-lib" (s)) +(declare-function diary-entry-time "diary-lib" (s)) ;;;###autoload (defun run-at-time (time repeat function &rest args) |