home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / windows / x / 19040 < prev    next >
Encoding:
Text File  |  1992-11-12  |  1.6 KB  |  47 lines

  1. Newsgroups: comp.windows.x
  2. Path: sparky!uunet!noc.near.net!gateway!miki!oj
  3. From: oj@miki.pictel.com (Oliver Jones)
  4. Subject: Re: *customization question
  5. Message-ID: <1992Nov11.142139.1476@miki.pictel.com>
  6. Organization: PictureTel Corporation
  7. References: <1992Nov10.173621.21909@elroy.jpl.nasa.gov>
  8. Date: Wed, 11 Nov 1992 14:21:39 GMT
  9. Lines: 36
  10.  
  11. In article <1992Nov10.173621.21909@elroy.jpl.nasa.gov> pjs@euclid.jpl.nasa.gov writes:
  12. >My ~/.Xdefaults contains
  13. >       *customization:                 -color
  14. >and I have
  15. >XUSERFILESEARCHPATH=./%N:/home/pjs/app-defaults/%N:/usr/nav/app-defaults/%N
  16.  
  17. >I would have expected (wanted) it to check for a Fig-color file in the
  18. >directories specified in XUSERFILESEARCHPATH. 
  19. > Is this a bug or a feature?
  20.  
  21. Feature. (This is a variant on FAQ # 34, q.v.)  The *-color
  22. customization stuff is implemented using the file search path.  The
  23. default XUSERFILESEARCHPATH, compiled into R5 Xt, is
  24.  
  25.         <root>/%L/%N%C:\
  26.         <root>/%l/%N%C:\
  27.         <root>/%N%C:\
  28.         <root>/%L/%N:\
  29.         <root>/%l/%N:\
  30.         <root>/%N:
  31.  
  32. The pathnames contain replacement characters as follows:
  33.     %N        application class name
  34.     %C        customization resource
  35.     %L        language, locale, and codeset (e.g. "ja_JP.EUC")
  36.     %l        language part of %L  (e.g. "ja") 
  37.  
  38. When you set your own value, you got rid of the %C specs, so Xt is
  39. doing what you're telling it when it ignores your -color files.
  40.  
  41. Set XUSERFILESEARCHPATH to ./%N%C:./%N:\
  42.        /home/pjs/app-defaults/%N%C:/home/pjs/app-defaults/%N:\
  43.        /usr/nav/app-defaults/%N%C:/usr/nav/app-defaults/%N
  44.  
  45. There's a good article about this stuff (by David Flanagan, I think)
  46. in the latest X Resource issue.
  47.