[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100287: * lisp/cus-edit.el (custo
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100287: * lisp/cus-edit.el (custom-save-all): Bind print-length and print-level to nil. |
Date: |
Tue, 07 Dec 2010 19:36:01 -0800 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 100287
author: Tom Breton <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: emacs-23
timestamp: Tue 2010-12-07 19:36:01 -0800
message:
* lisp/cus-edit.el (custom-save-all): Bind print-length and print-level to
nil.
modified:
lisp/ChangeLog
lisp/cus-edit.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-12-08 03:32:31 +0000
+++ b/lisp/ChangeLog 2010-12-08 03:36:01 +0000
@@ -1,3 +1,8 @@
+2010-12-08 Tom Breton <address@hidden>
+
+ * cus-edit.el (custom-save-all):
+ Bind print-length and print-level to nil. (Bug#7581)
+
2010-12-08 Glenn Morris <address@hidden>
* mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
=== modified file 'lisp/cus-edit.el'
--- a/lisp/cus-edit.el 2010-02-16 14:35:45 +0000
+++ b/lisp/cus-edit.el 2010-12-08 03:36:01 +0000
@@ -4279,7 +4279,9 @@
(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))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100287: * lisp/cus-edit.el (custom-save-all): Bind print-length and print-level to nil.,
Glenn Morris <=