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/add-log.el | |
parent | 40234eaf656ec432af0569a814cf1b0c398d13d8 (diff) | |
download | emacs-2c52d7a3b2fcbd32259bf4ca896b0813e5fc844f.tar.gz |
Remove directory part from filenames in function declarations.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 4 |
1 files changed, 2 insertions, 2 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." '(TeX-mode plain-TeX-mode LaTeX-mode tex-mode) "*Modes that look like TeX to `add-log-current-defun'.") -(declare-function c-beginning-of-defun "progmodes/cc-cmds" (&optional arg)) -(declare-function c-end-of-defun "progmodes/cc-cmds" (&optional arg)) +(declare-function c-beginning-of-defun "cc-cmds" (&optional arg)) +(declare-function c-end-of-defun "cc-cmds" (&optional arg)) ;;;###autoload (defun add-log-current-defun () |