ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/misc.C
(Generate patch)

Comparing rxvt-unicode/src/misc.C (file contents):
Revision 1.29 by root, Thu Aug 11 12:31:15 2005 UTC vs.
Revision 1.32 by root, Wed Jan 11 00:59:58 2006 UTC

36 36
37 char *dst = r; 37 char *dst = r;
38 while (len--) 38 while (len--)
39 { 39 {
40 ssize_t l = wcrtomb (dst, *str++, mbs); 40 ssize_t l = wcrtomb (dst, *str++, mbs);
41
41 if (l < 0) 42 if (l < 0)
42 *dst++ = '?'; 43 *dst++ = '?';
43 else 44 else
44 dst += l; 45 dst += l;
45 } 46 }
524 char *f; 525 char *f;
525 526
526 if (file == NULL || *file == '\0') 527 if (file == NULL || *file == '\0')
527 return NULL; 528 return NULL;
528 529
529 /* search environment variables here too */
530 if ((f = rxvt_File_search_path (path, file, ext)) == NULL) 530 f = rxvt_File_search_path (path, file, ext);
531#ifdef PATH_ENV
532 if ((f = rxvt_File_search_path (getenv (PATH_ENV), file, ext)) == NULL)
533#endif
534 f = rxvt_File_search_path (getenv ("PATH"), file, ext);
535 531
536#ifdef DEBUG_SEARCH_PATH 532#ifdef DEBUG_SEARCH_PATH
537 if (f) 533 if (f)
538 fprintf (stderr, "found: \"%s\"\n", f); 534 fprintf (stderr, "found: \"%s\"\n", f);
539#endif 535#endif
553void 549void
554rxvt_Draw_Shadow (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int h) 550rxvt_Draw_Shadow (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int h)
555{ 551{
556 int shadow; 552 int shadow;
557 553
558 shadow = (w == 0 || h == 0) ? 1 : SHADOW; 554 shadow = (w == 0 || h == 0) ? 1 : MENU_SHADOW;
559 w += x - 1; 555 w += x - 1;
560 h += y - 1; 556 h += y - 1;
561 for (; shadow-- > 0; x++, y++, w--, h--) 557 for (; shadow-- > 0; x++, y++, w--, h--)
562 { 558 {
563 XDrawLine (display, win, topShadow, x, y, w, y); 559 XDrawLine (display, win, topShadow, x, y, w, y);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines