X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/2c302df3a13236bfbf8ea1b771d13618fcda8d71..61addbc212a08ba146fc7baa7b3c04071f4445fb:/lisp/nxml/nxml-outln.el diff --git a/lisp/nxml/nxml-outln.el b/lisp/nxml/nxml-outln.el index 1afc4e9e5e..e30aee3de5 100644 --- a/lisp/nxml/nxml-outln.el +++ b/lisp/nxml/nxml-outln.el @@ -1,7 +1,6 @@ ;;; nxml-outln.el --- outline support for nXML mode -;; Copyright (C) 2004, 2007, 2008, 2009, 2010 -;; Free Software Foundation, Inc. +;; Copyright (C) 2004, 2007-2013 Free Software Foundation, Inc. ;; Author: James Clark ;; Keywords: XML @@ -61,7 +60,7 @@ ;; form. Single-line form is used when the outline state is hide-children ;; or there are no child sections; multi-line form is used otherwise. ;; There are two flavors of single-line form: with children and without. -;; The with-childen flavor is used when there are child sections. +;; The with-children flavor is used when there are child sections. ;; Single line with children looks like ;; <+section>A section title... ;; Single line without children looks like @@ -110,23 +109,20 @@ See the variable `nxml-section-element-name-regexp' for more details." :group 'nxml :type 'integer) -(defface nxml-heading - '((t (:weight bold))) - "Face used for the contents of abbreviated heading elements." +(defface nxml-heading '((t :weight bold)) + "Face for the contents of abbreviated heading elements." :group 'nxml-faces) -(defface nxml-outline-indicator - '((t (:inherit default))) - "Face used for `+' or `-' before element names in outlines." +(defface nxml-outline-indicator '((t)) + "Face for `+' or `-' before element names in outlines." :group 'nxml-faces) (defface nxml-outline-active-indicator - '((t (:box t :inherit nxml-outline-indicator))) - "Face used for clickable `+' or `-' before element names in outlines." + '((t :box t :inherit nxml-outline-indicator)) + "Face for clickable `+' or `-' before element names in outlines." :group 'nxml-faces) -(defface nxml-outline-ellipsis - '((t (:bold t :inherit default))) +(defface nxml-outline-ellipsis '((t :weight bold)) "Face used for `...' in outlines." :group 'nxml-faces)