diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/cus-edit.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index a00cb17e298..3a36cb02373 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -4717,8 +4717,9 @@ if only the first line of the docstring is shown.")) (let ((inhibit-read-only t) (print-length nil) (print-level nil)) - (custom-save-variables) - (custom-save-faces)) + (atomic-change-group + (custom-save-variables) + (custom-save-faces))) (let ((file-precious-flag t)) (save-buffer)) (if old-buffer |