summaryrefslogtreecommitdiff
path: root/lisp/disp-table.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1998-03-23 00:12:14 +0000
committerKarl Heuer <kwzh@gnu.org>1998-03-23 00:12:14 +0000
commitc40096a04343f419a1773dc23e91638c1f3908b5 (patch)
tree151b2b2e20e251e5c22251310f15468d93c89f0b /lisp/disp-table.el
parent8ec5a40461420a6cac52c9bd089cd8bd01d0c6eb (diff)
downloademacs-c40096a04343f419a1773dc23e91638c1f3908b5.tar.gz
(standard-display-underline): Shift face id by 19 bits.
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r--lisp/disp-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index 01a1fce17de..3ebc1c9e380 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -161,7 +161,7 @@ X frame."
(aset standard-display-table c
(vector
(if window-system
- (logior uc (lsh (face-id (internal-find-face 'underline)) 8))
+ (logior uc (lsh (face-id (internal-find-face 'underline)) 19))
(create-glyph (concat "\e[4m" (char-to-string uc) "\e[m"))))))
;; Allocate a glyph code to display by sending STRING to the terminal.