]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/vc/vc.el: Silence byte-compiler warning.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 6 Aug 2013 09:38:41 +0000 (11:38 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 6 Aug 2013 09:38:41 +0000 (11:38 +0200)
lisp/ChangeLog
lisp/vc/vc.el

index 61254731938f616f4d21a6a03efab2fa95eeed63..c7a5d6ae070861a114b37c37da4a588ac29ebcd9 100644 (file)
@@ -1,5 +1,8 @@
 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
 
+       * vc/vc.el (vc-default-ignore-completion-table):
+       Silence byte-compiler warning.
+
        * frameset.el (frameset-p): Don't check non-nullness of the `properties'
        slot , which can indeed be nil.
        (frameset-live-filter-alist, frameset-persistent-filter-alist):
index 9757d4a43bedf261a9b36dd8f37ad68477e9ac32..35e91e7e059e5323421cd51a4ddff533f0a0b915 100644 (file)
 ;;   default implementation always returns nil.
 ;;
 ;; - root (file)
-;; 
+;;
 ;;   Return the root of the VC controlled hierarchy for file.
 ;;
 ;; - repository-hostname (dirname)
 ;;   Ignore FILE under the current VCS.  When called interactively and
 ;;   with a prefix argument, remove an ignored file.  When called from
 ;;   Lisp code, if REMOVE is non-nil, remove FILE from ignored files."
-;; 
+;;
 ;; - ignore-completion-table
-;; 
+;;
 ;;   Return the completion table for files ignored by the current
 ;;   version control system, e.g., the entries in `.gitignore' and
 ;;   `.bzrignore'.
-;; 
+;;
 ;; - previous-revision (file rev)
 ;;
 ;;   Return the revision number that precedes REV for FILE, or nil if no such
@@ -1365,7 +1365,7 @@ non-nil, remove FILE from ignored files."
       (setq backend (vc-backend directory))
       (vc-call-backend backend 'ignore file default-directory remove))))
 
-(defun vc-default-ignore-completion-table (file)
+(defun vc-default-ignore-completion-table (_file)
   "Return the list of ignored files."
   ;; Unused lexical argument `file'
   nil)