]> git.eshelyaron.com Git - emacs.git/commitdiff
Add line-number faces to the display-line-numbers group
authorAlexander Gramiak <agrambot@gmail.com>
Sat, 7 Oct 2017 21:02:01 +0000 (15:02 -0600)
committerAlexander Gramiak <agrambot@gmail.com>
Sun, 8 Oct 2017 23:53:38 +0000 (17:53 -0600)
See https://lists.gnu.org/archive/html/emacs-devel/2017-10/msg00151.html
and its resulting thread.

* lisp/display-line-numbers.el (display-line-numbers): Add to the
convenience group.
* lisp/faces.el (line-number):
(line-number-current-line): Add to the display-line-numbers group.

lisp/display-line-numbers.el
lisp/faces.el

index 3b6b101de49a53382295d69946c39e8ab8131cd2..15e0427915617fa6b151c5253cc52cbf9a86828e 100644 (file)
@@ -36,6 +36,7 @@
 
 (defgroup display-line-numbers nil
   "Display line numbers in the buffer."
+  :group 'convenience
   :group 'display)
 
 (defcustom display-line-numbers-type t
index 24ab1fa4f0c5ae64491cc009282be7804e03e14f..a5f1d1dd328dd8091dd49e5e9099b145a4ac4132 100644 (file)
@@ -2483,7 +2483,8 @@ monospaced font, otherwise line numbers will not line up,
 and text lines might move horizontally as you move through
 the buffer."
   :version "26.1"
-  :group 'basic-faces)
+  :group 'basic-faces
+  :group 'display-line-numbers)
 
 (defface line-number-current-line
   '((t :inherit line-number))
@@ -2497,7 +2498,8 @@ the buffer.  Similarly, making this face's font different
 from that of the `line-number' face could produce such
 unwanted effects."
   :version "26.1"
-  :group 'basic-faces)
+  :group 'basic-faces
+  :group 'display-line-numbers)
 
 (defface escape-glyph
   '((((background dark)) :foreground "cyan")