diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-03-23 00:12:14 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-03-23 00:12:14 +0000 |
commit | 834b3dc4dfcf7199f00aa488a438ebbb0a923502 (patch) | |
tree | 599635b791ddfae0be9000bfa29696e0fb13151a | |
parent | 42add525fbcd8038216379b2291e62f0f93afd53 (diff) | |
download | emacs-834b3dc4dfcf7199f00aa488a438ebbb0a923502.tar.gz |
(standard-display-underline): Shift face id by 19 bits.
-rw-r--r-- | lisp/disp-table.el | 2 |
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. |