diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/cus-edit.el | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bdbbc877ee5..4f734ea0646 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2002-12-25 Markus Rost <rost@math.ohio-state.edu> + + * cus-edit.el (custom-save-faces): Fix typo. + 2002-12-23 Francesco Potort,Al(B <pot@gnu.org> * mail/undigest.el (unforward-rmail-message): Do not assume that @@ -42,7 +46,6 @@ (custom-face-reset-standard): Take themes into account. (custom-save-variables): Take themes into account. (custom-save-faces): Take themes into account. - (custom-save-faces): Take themes into account. (custom-save-resets): New function. (custom-save-loaded-themes): New function. (customize-save-customized): Take themes into account. diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 6d0b4225bf9..63901cc7a8c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -3839,13 +3839,13 @@ or (if there were none) at the end of the buffer." (t (princ ")")))) (t - (princ ")"))))))) + (princ ")")))))) saved-list) (if (bolp) (princ " ")) (princ ")") (unless (looking-at "\n") - (princ "\n")))) + (princ "\n"))))) (defun custom-save-resets (property setter special) (let (started-writing ignored-special) |