Mercurial > hg > xemacs-beta
comparison lisp/font.el @ 3125:d97bc868eaaf
[xemacs-hg @ 2005-12-05 09:43:36 by scop]
Look for rgb.txt from /usr(/local)/share/X11 <1133641210.2195.86.camel@localhost.localdomain>
author | scop |
---|---|
date | Mon, 05 Dec 2005 09:43:37 +0000 |
parents | ad2f4ae9895b |
children | 316fddbf58e2 |
comparison
equal
deleted
inserted
replaced
3124:e698963eb2fe | 3125:d97bc868eaaf |
---|---|
1160 (defun font-lookup-rgb-components (color) | 1160 (defun font-lookup-rgb-components (color) |
1161 "Lookup COLOR (a color name) in rgb.txt and return a list of RGB values. | 1161 "Lookup COLOR (a color name) in rgb.txt and return a list of RGB values. |
1162 The list (R G B) is returned, or an error is signaled if the lookup fails." | 1162 The list (R G B) is returned, or an error is signaled if the lookup fails." |
1163 (let ((lib-list (if-boundp 'x-library-search-path | 1163 (let ((lib-list (if-boundp 'x-library-search-path |
1164 x-library-search-path | 1164 x-library-search-path |
1165 ;; This default is from XEmacs 19.13 - hope it covers | |
1166 ;; everyone. | |
1167 (list "/usr/X11R6/lib/X11/" | 1165 (list "/usr/X11R6/lib/X11/" |
1168 "/usr/X11R5/lib/X11/" | 1166 "/usr/X11R5/lib/X11/" |
1169 "/usr/lib/X11R6/X11/" | 1167 "/usr/lib/X11R6/X11/" |
1170 "/usr/lib/X11R5/X11/" | 1168 "/usr/lib/X11R5/X11/" |
1171 "/usr/local/X11R6/lib/X11/" | 1169 "/usr/local/X11R6/lib/X11/" |
1172 "/usr/local/X11R5/lib/X11/" | 1170 "/usr/local/X11R5/lib/X11/" |
1173 "/usr/local/lib/X11R6/X11/" | 1171 "/usr/local/lib/X11R6/X11/" |
1174 "/usr/local/lib/X11R5/X11/" | 1172 "/usr/local/lib/X11R5/X11/" |
1175 "/usr/X11/lib/X11/" | 1173 "/usr/X11/lib/X11/" |
1176 "/usr/lib/X11/" | 1174 "/usr/lib/X11/" |
1175 "/usr/share/X11/" | |
1177 "/usr/local/lib/X11/" | 1176 "/usr/local/lib/X11/" |
1177 "/usr/local/share/X11/" | |
1178 "/usr/X386/lib/X11/" | 1178 "/usr/X386/lib/X11/" |
1179 "/usr/x386/lib/X11/" | 1179 "/usr/x386/lib/X11/" |
1180 "/usr/XFree86/lib/X11/" | 1180 "/usr/XFree86/lib/X11/" |
1181 "/usr/unsupported/lib/X11/" | 1181 "/usr/unsupported/lib/X11/" |
1182 "/usr/athena/lib/X11/" | 1182 "/usr/athena/lib/X11/" |