* lisp/cus-edit.el (custom-save-all): Bind print-length and print-level to nil.

Fixes: debbugs:7581
This commit is contained in:
Tom Breton 2010-12-07 19:36:01 -08:00 committed by Glenn Morris
parent d5e6e0b6df
commit 478834e63b
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-12-08 Tom Breton <tehom@panix.com>
* cus-edit.el (custom-save-all):
Bind print-length and print-level to nil. (Bug#7581)
2010-12-08 Glenn Morris <rgm@gnu.org>
* mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):

View file

@ -4279,7 +4279,9 @@ if only the first line of the docstring is shown."))
(unless (eq major-mode 'emacs-lisp-mode)
(emacs-lisp-mode))
(let ((inhibit-read-only t))
(let ((inhibit-read-only t)
(print-length nil)
(print-level nil))
(custom-save-variables)
(custom-save-faces))
(let ((file-precious-flag t))