1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

Unwrap a line in query_delete_selected_item.

This commit is contained in:
Miciah Dashiel Butler Masters 2006-02-19 07:22:51 +00:00 committed by Miciah Dashiel Butler Masters
parent b8063709c0
commit 143398f09d

View File

@ -733,8 +733,7 @@ query_delete_selected_item(void *context_)
assert(item);
delete = ops->can_delete(item)
? DELETE_LOCKED : DELETE_IMPOSSIBLE;
delete = ops->can_delete(item) ? DELETE_LOCKED : DELETE_IMPOSSIBLE;
if (delete == DELETE_IMPOSSIBLE || ops->is_used(item)) {
print_delete_error(item, term, ops, delete);