Mercurial > emacs
view move-if-change @ 74967:8c79fb85d31c
(auto_resize_tool_bars_p): Replace with ...
(Vauto_resize_tool_bars): ... this.
(syms_of_xdisp): DEFVAR_LISP and initialize it. Update doc string
to describe new value `grow-only', and use of C-l.
(display_tool_bar_line): Only use default face for border below
toolbar if not grow-only (to get acceptable visual appearence).
Explicitly set visible_height for empty toolbar lines.
(redisplay_tool_bar): Handle `grow-only' setting. Check and clear
minimize_tool_bar_window_p flag.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 29 Dec 2006 23:29:45 +0000 |
parents | 354e0c45cedf |
children | 14a97ab281d5 |
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