summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/cus-dep.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el
index ac156cad18d..16871ef7866 100644
--- a/lisp/cus-dep.el
+++ b/lisp/cus-dep.el
@@ -58,9 +58,10 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies"
(insert " ")
(insert "(put '" (symbol-name symbol)
" 'custom-loads '("))
- (insert (prin1-to-string where))
+ (prin1 where (current-buffer))
(push where found)))
- (insert "))\n")))))
+ (when found
+ (insert "))\n"))))))
(insert "\n;;; cus-load.el ends here\n")
(save-buffer)
(message "Generating cus-load.el..."))