summaryrefslogtreecommitdiff
path: root/lisp/obsolete
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2015-11-23 14:49:23 +0000
committerAlan Mackenzie <acm@muc.de>2015-11-23 14:49:23 +0000
commit5454708346433d08a41f77a12d416614dd113721 (patch)
tree7cf94a2691e9d581a8e91199c5df096c08cdbbc8 /lisp/obsolete
parent12ad79c23e26e02007776105f99b03b0169c2a62 (diff)
downloademacs-5454708346433d08a41f77a12d416614dd113721.tar.gz
Expunge occurrences of `setq' with an odd number of arguments.
* lisp/apropos.el (apropos-documentation): * lisp/obsolete/complete.el (PC-include-file-all-completions): * lisp/progmodes/compile.el (compilation-goto-locus): * lisp/vc/vc-cvs.el (vc-cvs-parse-root): (twice) Insert missing nil at end of `setq' forms. * lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Remove an erroneous trailing variable name from a setq, thus allowing a compilation properly to track functions not defined at runtime.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r--lisp/obsolete/complete.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/obsolete/complete.el b/lisp/obsolete/complete.el
index 87dedacbe1d..e67ae5e2e53 100644
--- a/lisp/obsolete/complete.el
+++ b/lisp/obsolete/complete.el
@@ -1074,7 +1074,7 @@ absolute rather than relative to some directory on the SEARCH-PATH."
(setq search-path
(mapcar (lambda (dir) (concat dir subdir))
search-path)
- file ))
+ file nil))
;; Make list of completions in each directory on search-path
(while search-path
(let* ((dir (car search-path))