diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2013-09-23 04:59:30 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2013-09-23 04:59:30 +0200 |
commit | c8af4e673ea59b30e5a886397cc5a3426b2f64b0 (patch) | |
tree | 3a9236b8d5aa4bd166a271e40cdc9e48070b9cc0 /lisp/vc | |
parent | 57b16162ceacfd46efd784f0693b210b85d82762 (diff) | |
download | emacs-c8af4e673ea59b30e5a886397cc5a3426b2f64b0.tar.gz |
lisp/vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/vc-sccs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-sccs.el b/lisp/vc/vc-sccs.el index e00d55218c8..d78564e15ed 100644 --- a/lisp/vc/vc-sccs.el +++ b/lisp/vc/vc-sccs.el @@ -506,7 +506,7 @@ Remaining arguments are ignored." ;; a (autoload 'vc-sccs-search-project-dir "vc-sccs") which would not ;; help us avoid loading vc-sccs. ;;;###autoload -(progn (defun vc-sccs-search-project-dir (dirname basename) +(progn (defun vc-sccs-search-project-dir (_dirname basename) "Return the name of a master file in the SCCS project directory. Does not check whether the file exists but returns nil if it does not find any project directory." |