aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/vc/vc-sccs.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f5cdbcbb9b2..b2e09b18112 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12013-09-23 Juanma Barranquero <lekktu@gmail.com> 12013-09-23 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
4
3 * autoarg.el (autoarg-kp-digit-argument): 5 * autoarg.el (autoarg-kp-digit-argument):
4 * electric.el (Electric-command-loop): 6 * electric.el (Electric-command-loop):
5 * kmacro.el (kmacro-step-edit-insert): 7 * kmacro.el (kmacro-step-edit-insert):
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."
506;; a (autoload 'vc-sccs-search-project-dir "vc-sccs") which would not 506;; a (autoload 'vc-sccs-search-project-dir "vc-sccs") which would not
507;; help us avoid loading vc-sccs. 507;; help us avoid loading vc-sccs.
508;;;###autoload 508;;;###autoload
509(progn (defun vc-sccs-search-project-dir (dirname basename) 509(progn (defun vc-sccs-search-project-dir (_dirname basename)
510 "Return the name of a master file in the SCCS project directory. 510 "Return the name of a master file in the SCCS project directory.
511Does not check whether the file exists but returns nil if it does not 511Does not check whether the file exists but returns nil if it does not
512find any project directory." 512find any project directory."