Mercurial > hg > xemacs-beta
view move-if-change @ 5078:a04cf0fea770
fix for clipped minibuffer window
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-25 Ben Wing <ben@xemacs.org>
* frame-impl.h:
Create some new macros for more clearly getting the size/edges
of various rectangles surrounding the paned area.
* frame.c (change_frame_size_1):
Use the new macros. Clean up change_frame_size_1 and make sure
the internal border width gets taken into account -- that was what
was causing the clipped bottom and right.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Thu, 25 Feb 2010 06:11:07 -0600 |
parents | 376386a54a3c |
children |
line wrap: on
line source
#!/bin/sh if test -r $2 then if cmp $1 $2 > /dev/null then echo $2 is unchanged rm -f $1 else mv -f $1 $2 fi else mv -f $1 $2 fi