aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/faces.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el27
1 files changed, 27 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 9a8a1344caf..c3693d16631 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -2465,6 +2465,33 @@ If you set `term-file-prefix' to nil, this function does nothing."
2465 :version "21.1" 2465 :version "21.1"
2466 :group 'basic-faces) 2466 :group 'basic-faces)
2467 2467
2468;; Definition stolen from linum.el.
2469(defface line-number
2470 '((t :inherit (shadow default)))
2471 "Face for displaying line numbers.
2472This face is used when `display-line-numbers' is non-nil.
2473
2474If you customize the font of this face, make sure it is a
2475monospaced font, otherwise line numbers will not line up,
2476and text lines might move horizontally as you move through
2477the buffer."
2478 :version "26.1"
2479 :group 'basic-faces)
2480
2481(defface line-number-current-line
2482 '((t :inherit line-number))
2483 "Face for displaying the current line number.
2484This face is used when `display-line-numbers' is non-nil.
2485
2486If you customize the font of this face, make sure it is a
2487monospaced font, otherwise line numbers will not line up,
2488and text lines might move horizontally as you move through
2489the buffer. Similarly, making this face's font different
2490from that of the `line-number' face could produce such
2491unwanted effects."
2492 :version "26.1"
2493 :group 'basic-faces)
2494
2468(defface escape-glyph 2495(defface escape-glyph
2469 '((((background dark)) :foreground "cyan") 2496 '((((background dark)) :foreground "cyan")
2470 ;; See the comment in minibuffer-prompt for 2497 ;; See the comment in minibuffer-prompt for