aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 2b86051a726..fac9c77e12a 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -4581,7 +4581,7 @@ This function does not save the buffer."
4581 (if (bolp) 4581 (if (bolp)
4582 (princ " ")) 4582 (princ " "))
4583 (princ ")") 4583 (princ ")")
4584 (unless (looking-at-p "\n") 4584 (when (/= (following-char) ?\n)
4585 (princ "\n"))))) 4585 (princ "\n")))))
4586 4586
4587(defun custom-save-faces () 4587(defun custom-save-faces ()
@@ -4636,7 +4636,7 @@ This function does not save the buffer."
4636 (if (bolp) 4636 (if (bolp)
4637 (princ " ")) 4637 (princ " "))
4638 (princ ")") 4638 (princ ")")
4639 (unless (looking-at-p "\n") 4639 (when (/= (following-char) ?\n)
4640 (princ "\n"))))) 4640 (princ "\n")))))
4641 4641
4642;;; The Customize Menu. 4642;;; The Customize Menu.