From: Mauro Aranda Date: Sat, 15 Jul 2023 20:05:23 +0000 (-0300) Subject: Fix typo in pre-filter for underline property X-Git-Tag: emacs-29.1-rc1~15 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=39873d6d5d13609d9972619d31f006bbb2e6ac46;p=emacs.git Fix typo in pre-filter for underline property * lisp/cus-face.el (custom-face-attributes): Fix typo (Bug#64347) --- diff --git a/lisp/cus-face.el b/lisp/cus-face.el index ec89b4f7ff6..a3a27263a7c 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -158,7 +158,7 @@ (or (and (consp real-value) (plist-get real-value :style)) 'line)) (position (and (consp real-value) - (plist-get real-value :style)))) + (plist-get real-value :position)))) (list :color color :style style :position position)))) ;; filter to make customized-value suitable for storing ,(lambda (cus-value)