summaryrefslogtreecommitdiff
path: root/lisp/cus-dep.el
diff options
context:
space:
mode:
authorPer Abrahamsen <abraham@dina.kvl.dk>1997-04-15 11:13:24 +0000
committerPer Abrahamsen <abraham@dina.kvl.dk>1997-04-15 11:13:24 +0000
commita9d3a78b019b65536168b02151a982a5ecf7d6ee (patch)
tree76a75984952d6793a3871a18ef888d5e4523126e /lisp/cus-dep.el
parent4cab4c5b72d8b881a1f02efc7d6966bba19b1100 (diff)
downloademacs-a9d3a78b019b65536168b02151a982a5ecf7d6ee.tar.gz
Fixed generation of empty dependencies lists.
Diffstat (limited to 'lisp/cus-dep.el')
-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..."))