From a9d3a78b019b65536168b02151a982a5ecf7d6ee Mon Sep 17 00:00:00 2001 From: Per Abrahamsen Date: Tue, 15 Apr 1997 11:13:24 +0000 Subject: [PATCH] Fixed generation of empty dependencies lists. --- lisp/cus-dep.el | 5 +++-- 1 file 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...")) -- 2.39.5