# HG changeset patch # User Dave Love # Date 959350184 0 # Node ID 50050adc83854e46a063d31b616d68473ade8e88 # Parent 3401d9822c149961d287ff8ef5dab46ad407f452 (standard-display-underline): Don't use internal-find-face. diff -r 3401d9822c14 -r 50050adc8385 lisp/disp-table.el --- a/lisp/disp-table.el Fri May 26 13:47:12 2000 +0000 +++ b/lisp/disp-table.el Fri May 26 14:09:44 2000 +0000 @@ -157,11 +157,10 @@ ;;;###autoload (defun standard-display-underline (c uc) "Display character C as character UC plus underlining." - (if window-system (require 'faces)) (aset standard-display-table c (vector (if window-system - (logior uc (lsh (face-id (internal-find-face 'underline)) 19)) + (logior uc (lsh (face-id '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.