=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-select-layout.c,v retrieving revision 1.14 retrieving revision 1.15 diff -c -r1.14 -r1.15 *** src/usr.bin/tmux/cmd-select-layout.c 2012/04/01 13:18:38 1.14 --- src/usr.bin/tmux/cmd-select-layout.c 2012/04/01 13:27:18 1.15 *************** *** 1,4 **** ! /* $OpenBSD: cmd-select-layout.c,v 1.14 2012/04/01 13:18:38 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-select-layout.c,v 1.15 2012/04/01 13:27:18 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 113,125 **** layout_list_add(w); if (args_has(self->args, 'U')) { if ((layoutname = layout_list_redo(w)) == NULL) { ! ctx->error(ctx, "no more layout history"); return (-1); } goto set_layout; } else if (args_has(self->args, 'u')) { if ((layoutname = layout_list_undo(w)) == NULL) { ! ctx->error(ctx, "no more layout history"); return (-1); } goto set_layout; --- 113,125 ---- layout_list_add(w); if (args_has(self->args, 'U')) { if ((layoutname = layout_list_redo(w)) == NULL) { ! ctx->info(ctx, "no more layout history"); return (-1); } goto set_layout; } else if (args_has(self->args, 'u')) { if ((layoutname = layout_list_undo(w)) == NULL) { ! ctx->info(ctx, "no more layout history"); return (-1); } goto set_layout;