# HG changeset patch # User Richard M. Stallman # Date 874851097 0 # Node ID 023d2a62fd6b0a8a11885f88fe3522ef34f676c0 # Parent 2f60572de4d17f174b9b8b49340a6aa9be6ecb5f (c-initialize-builtin-style): Don't ever try to use copy-tree. diff -r 2f60572de4d1 -r 023d2a62fd6b lisp/progmodes/cc-styles.el --- a/lisp/progmodes/cc-styles.el Sun Sep 21 12:34:40 1997 +0000 +++ b/lisp/progmodes/cc-styles.el Sun Sep 21 14:11:37 1997 +0000 @@ -571,14 +571,11 @@ ;; style. Only do this once! (or (assoc "cc-mode" c-style-alist) (let (copyfunc) - ;; use built-in copy-tree if its there. - (if (fboundp 'copy-tree) - (setq copyfunc (symbol-function 'copy-tree)) - (setq copyfunc (lambda (tree) - (if (consp tree) - (cons (funcall copyfunc (car tree)) - (funcall copyfunc (cdr tree))) - tree)))) + (setq copyfunc (lambda (tree) + (if (consp tree) + (cons (funcall copyfunc (car tree)) + (funcall copyfunc (cdr tree))) + tree))) (c-add-style "cc-mode" (mapcar (function