removed C-[ from source and man page e4fbc432
Anselm R.Garbe · 2006-08-10 10:09 2 file(s) · +1 −5
dmenu.1 +1 −1
41 41
Shift-Return
42 42
Confirm selection and quit (print the text in the input field to stdout).
43 43
.TP
44 -
Escape (Control-[)
44 +
Escape
45 45
Quit without selecting an item.
46 46
.TP
47 47
Backspace (Control-h)
main.c +0 −4
174 174
		case XK_h:
175 175
			ksym = XK_BackSpace;
176 176
			break;
177 -
		case XK_U:
178 177
		case XK_u:
179 178
			text[0] = 0;
180 179
			match(text);
181 180
			drawmenu();
182 181
			return;
183 -
			break;
184 -
		case XK_bracketleft:
185 -
			ksym = XK_Escape;
186 182
			break;
187 183
		}
188 184
	}