diff options
author | okan | 2010-02-10 01:23:05 +0000 |
---|---|---|
committer | okan | 2010-02-10 01:23:05 +0000 |
commit | 44f1d87ca93fe43f15f30b19704549c26b550c99 (patch) | |
tree | 3b1b1a11555b38d72e1f2d3183d5245aae0d7fdb /calmwm.h | |
parent | 1617ae7c9f7259da782c0f829298490c9962ed41 (diff) | |
download | cwm-44f1d87ca93fe43f15f30b19704549c26b550c99.tar.gz |
preserve labels after an edit action is aborted; extending the menu
struct just for this is the least intrusive approach until the menu code
is reviewed.
inspired by Thomas Pfaff's report on tech@
ok oga@
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.115 2010/01/27 03:04:50 okan Exp $ + * $Id: calmwm.h,v 1.116 2010/02/10 01:23:05 okan Exp $ */ #ifndef _CALMWM_H_ @@ -320,6 +320,7 @@ struct menu { char print[MENU_MAXENTRY + 1]; void *ctx; short dummy; + short abort; }; TAILQ_HEAD(menu_q, menu); |