Mercurial > hg > xemacs-beta
diff src/glyphs-x.c @ 80:1ce6082ce73f r20-0b90
Import from CVS: tag r20-0b90
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:06:37 +0200 |
parents | 54cc21c15cbb |
children | 6a378aca36af |
line wrap: on
line diff
--- a/src/glyphs-x.c Mon Aug 13 09:05:44 2007 +0200 +++ b/src/glyphs-x.c Mon Aug 13 09:06:37 2007 +0200 @@ -276,11 +276,11 @@ /* Check non-absolute pathnames with a directory component relative to the search path; that's the way Xt does it. */ /* #### Unix-specific */ - if (string_byte (XSTRING (name), 0) == '/' || - (string_byte (XSTRING (name), 0) == '.' && - (string_byte (XSTRING (name), 1) == '/' || - (string_byte (XSTRING (name), 1) == '.' && - (string_byte (XSTRING (name), 2) == '/'))))) + if (XSTRING_BYTE (name, 0) == '/' || + (XSTRING_BYTE (name, 0) == '.' && + (XSTRING_BYTE (name, 1) == '/' || + (XSTRING_BYTE (name, 1) == '.' && + (XSTRING_BYTE (name, 2) == '/'))))) { if (!NILP (Ffile_readable_p (name))) return name;