diff options
| author | Glenn Morris | 2007-12-06 04:05:51 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-12-06 04:05:51 +0000 |
| commit | 2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f (patch) | |
| tree | 68decfb6db19f666f22be7cf248e69b2b51e1f04 | |
| parent | 40234eaf656ec432af0569a814cf1b0c398d13d8 (diff) | |
| download | emacs-2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f.tar.gz emacs-2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f.zip | |
Remove directory part from filenames in function declarations.
| -rw-r--r-- | lisp/add-log.el | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/gulp.el | 4 | ||||
| -rw-r--r-- | lisp/font-lock.el | 12 | ||||
| -rw-r--r-- | lisp/help-fns.el | 2 | ||||
| -rw-r--r-- | lisp/ido.el | 2 | ||||
| -rw-r--r-- | lisp/informat.el | 2 |
7 files changed, 14 insertions, 14 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 89aeafc75d6..33ecd98ec44 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el | |||
| @@ -826,8 +826,8 @@ Prefix arg means justify as well." | |||
| 826 | '(TeX-mode plain-TeX-mode LaTeX-mode tex-mode) | 826 | '(TeX-mode plain-TeX-mode LaTeX-mode tex-mode) |
| 827 | "*Modes that look like TeX to `add-log-current-defun'.") | 827 | "*Modes that look like TeX to `add-log-current-defun'.") |
| 828 | 828 | ||
| 829 | (declare-function c-beginning-of-defun "progmodes/cc-cmds" (&optional arg)) | 829 | (declare-function c-beginning-of-defun "cc-cmds" (&optional arg)) |
| 830 | (declare-function c-end-of-defun "progmodes/cc-cmds" (&optional arg)) | 830 | (declare-function c-end-of-defun "cc-cmds" (&optional arg)) |
| 831 | 831 | ||
| 832 | ;;;###autoload | 832 | ;;;###autoload |
| 833 | (defun add-log-current-defun () | 833 | (defun add-log-current-defun () |
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'." | |||
| 1054 | nil) | 1054 | nil) |
| 1055 | 1055 | ||
| 1056 | ;; (compile-mode) will cause this to be loaded. | 1056 | ;; (compile-mode) will cause this to be loaded. |
| 1057 | (declare-function compilation-forget-errors "../progmodes/compile" nil) | 1057 | (declare-function compilation-forget-errors "compile" ()) |
| 1058 | 1058 | ||
| 1059 | ;; Log the start of a file in *Compile-Log*, and mark it as done. | 1059 | ;; Log the start of a file in *Compile-Log*, and mark it as done. |
| 1060 | ;; Return the position of the start of the page in the log buffer. | 1060 | ;; 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.") | |||
| 78 | :type 'string | 78 | :type 'string |
| 79 | :group 'gulp) | 79 | :group 'gulp) |
| 80 | 80 | ||
| 81 | (declare-function mail-subject "../mail/sendmail" ()) | 81 | (declare-function mail-subject "sendmail" ()) |
| 82 | (declare-function mail-send "../mail/sendmail" ()) | 82 | (declare-function mail-send "sendmail" ()) |
| 83 | 83 | ||
| 84 | (defun gulp-send-requests (dir &optional time) | 84 | (defun gulp-send-requests (dir &optional time) |
| 85 | "Send requests for updates to the authors of Lisp packages in directory DIR. | 85 | "Send requests for updates to the authors of Lisp packages in directory DIR. |
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 7e1fff79772..dc350ce146b 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el | |||
| @@ -886,12 +886,12 @@ The value of this variable is used when Font Lock mode is turned on." | |||
| 886 | (defvar lazy-lock-mode) | 886 | (defvar lazy-lock-mode) |
| 887 | (defvar jit-lock-mode) | 887 | (defvar jit-lock-mode) |
| 888 | 888 | ||
| 889 | (declare-function fast-lock-after-fontify-buffer "obsolete/fast-lock") | 889 | (declare-function fast-lock-after-fontify-buffer "fast-lock") |
| 890 | (declare-function fast-lock-after-unfontify-buffer "obsolete/fast-lock") | 890 | (declare-function fast-lock-after-unfontify-buffer "fast-lock") |
| 891 | (declare-function fast-lock-mode "obsolete/fast-lock") | 891 | (declare-function fast-lock-mode "fast-lock") |
| 892 | (declare-function lazy-lock-after-fontify-buffer "obsolete/lazy-lock") | 892 | (declare-function lazy-lock-after-fontify-buffer "lazy-lock") |
| 893 | (declare-function lazy-lock-after-unfontify-buffer "obsolete/lazy-lock") | 893 | (declare-function lazy-lock-after-unfontify-buffer "lazy-lock") |
| 894 | (declare-function lazy-lock-mode "obsolete/lazy-lock") | 894 | (declare-function lazy-lock-mode "lazy-lock") |
| 895 | 895 | ||
| 896 | (defun font-lock-turn-on-thing-lock () | 896 | (defun font-lock-turn-on-thing-lock () |
| 897 | (let ((thing-mode (font-lock-value-in-major-mode font-lock-support-mode))) | 897 | (let ((thing-mode (font-lock-value-in-major-mode font-lock-support-mode))) |
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 0643b85672c..5aa8860ae9d 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -248,7 +248,7 @@ face (according to `face-differs-from-default-p')." | |||
| 248 | src-file | 248 | src-file |
| 249 | file-name))) | 249 | file-name))) |
| 250 | 250 | ||
| 251 | (declare-function ad-get-advice-info "emacs-lisp/advice" (function)) | 251 | (declare-function ad-get-advice-info "advice" (function)) |
| 252 | 252 | ||
| 253 | ;;;###autoload | 253 | ;;;###autoload |
| 254 | (defun describe-function-1 (function) | 254 | (defun describe-function-1 (function) |
diff --git a/lisp/ido.el b/lisp/ido.el index 2a327439078..4658a887716 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -3365,7 +3365,7 @@ for first matching file." | |||
| 3365 | (nconc ido-temp-list items) | 3365 | (nconc ido-temp-list items) |
| 3366 | (setq ido-temp-list items))) | 3366 | (setq ido-temp-list items))) |
| 3367 | 3367 | ||
| 3368 | (declare-function tramp-tramp-file-p "net/tramp" (name)) | 3368 | (declare-function tramp-tramp-file-p "tramp" (name)) |
| 3369 | 3369 | ||
| 3370 | (defun ido-file-name-all-completions-1 (dir) | 3370 | (defun ido-file-name-all-completions-1 (dir) |
| 3371 | (cond | 3371 | (cond |
diff --git a/lisp/informat.el b/lisp/informat.el index 747d57c4f38..05be680bfa8 100644 --- a/lisp/informat.el +++ b/lisp/informat.el | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | 32 | ||
| 33 | (require 'info) | 33 | (require 'info) |
| 34 | 34 | ||
| 35 | (declare-function texinfo-format-refill "textmodes/texinfmt" ()) | 35 | (declare-function texinfo-format-refill "texinfmt" ()) |
| 36 | 36 | ||
| 37 | ;;;###autoload | 37 | ;;;###autoload |
| 38 | (defun Info-tagify (&optional input-buffer-name) | 38 | (defun Info-tagify (&optional input-buffer-name) |