diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-06 04:05:51 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-06 04:05:51 +0000 |
commit | 2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f (patch) | |
tree | 68decfb6db19f666f22be7cf248e69b2b51e1f04 /lisp/emacs-lisp | |
parent | 40234eaf656ec432af0569a814cf1b0c398d13d8 (diff) | |
download | emacs-2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f.tar.gz emacs-2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f.tar.bz2 emacs-2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f.zip |
Remove directory part from filenames in function declarations.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/gulp.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 4ef32a244eb..eaff1ad72f5 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1054,7 +1054,7 @@ Each function's symbol gets added to `byte-compile-noruntime-functions'." nil) ;; (compile-mode) will cause this to be loaded. -(declare-function compilation-forget-errors "../progmodes/compile" nil) +(declare-function compilation-forget-errors "compile" ()) ;; Log the start of a file in *Compile-Log*, and mark it as done. ;; Return the position of the start of the page in the log buffer. diff --git a/lisp/emacs-lisp/gulp.el b/lisp/emacs-lisp/gulp.el index a75b52d99bd..5ff2b8f564c 100644 --- a/lisp/emacs-lisp/gulp.el +++ b/lisp/emacs-lisp/gulp.el @@ -78,8 +78,8 @@ Thanks.") :type 'string :group 'gulp) -(declare-function mail-subject "../mail/sendmail" ()) -(declare-function mail-send "../mail/sendmail" ()) +(declare-function mail-subject "sendmail" ()) +(declare-function mail-send "sendmail" ()) (defun gulp-send-requests (dir &optional time) "Send requests for updates to the authors of Lisp packages in directory DIR. |