branch: externals/realgud commit 5e07d917b81d26a9f79045e6892bc80b8b20e308 Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Use boxed attributes in breakpoint enable/disable faces --- realgud/common/bp.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/realgud/common/bp.el b/realgud/common/bp.el index 4e13a15..6e685f1 100644 --- a/realgud/common/bp.el +++ b/realgud/common/bp.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010, 2012-2015, 2017 Free Software Foundation, Inc +;; Copyright (C) 2010, 2012-2015, 2017-2018 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> @@ -106,12 +106,12 @@ Only used in text terminals: fringe icons always use :group 'realgud-bp) (defface realgud-bp-line-enabled-face - '((t :underline "red")) + '((t (:box (:color "red")))) "Face for lines with enabled breakpoints." :group 'realgud-bp) (defface realgud-bp-line-disabled-face - '((t :underline "gray")) + '((t (:box (:color "grey")))) "Face for lines with disabled breakpoints." :group 'realgud-bp)