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):
;; 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
(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)