aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cus-theme.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cus-theme.el')
-rw-r--r--lisp/cus-theme.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cus-theme.el b/lisp/cus-theme.el
index c5682add23a..d2ee14d8bdf 100644
--- a/lisp/cus-theme.el
+++ b/lisp/cus-theme.el
@@ -431,7 +431,7 @@ It includes all variables in list VARS."
431 (if (bolp) 431 (if (bolp)
432 (princ " ")) 432 (princ " "))
433 (princ ")") 433 (princ ")")
434 (unless (looking-at "\n") 434 (when (/= (following-char) ?\n)
435 (princ "\n"))))) 435 (princ "\n")))))
436 436
437(defun custom-theme-write-faces (theme faces) 437(defun custom-theme-write-faces (theme faces)
@@ -463,7 +463,7 @@ It includes all faces in list FACES."
463 (princ ")"))))) 463 (princ ")")))))
464 (if (bolp) (princ " ")) 464 (if (bolp) (princ " "))
465 (princ ")") 465 (princ ")")
466 (unless (looking-at "\n") 466 (when (/= (following-char) ?\n)
467 (princ "\n"))))) 467 (princ "\n")))))
468 468
469 469