]> git.eshelyaron.com Git - emacs.git/commitdiff
(standard-display-underline): Don't use internal-find-face.
authorDave Love <fx@gnu.org>
Fri, 26 May 2000 14:09:44 +0000 (14:09 +0000)
committerDave Love <fx@gnu.org>
Fri, 26 May 2000 14:09:44 +0000 (14:09 +0000)
lisp/disp-table.el

index b90f3277027ac8c6e9e61db0090ceda2477bc320..a335d15241ca7050901c3431944365999e2025e7 100644 (file)
@@ -157,11 +157,10 @@ X frame."
 ;;;###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.