Exemplo n.º 1
0
const wchar_t *kill_yank_rotate() {
    ASSERT_IS_MAIN_THREAD();
    // Move the first element to the end.
    if (kill_list.empty()) {
        return NULL;
    }
    kill_list.splice(kill_list.end(), kill_list, kill_list.begin());
    return kill_list.front().c_str();
}
Exemplo n.º 2
0
const wchar_t *kill_yank()
{
    kill_check_x_buffer();
    if (kill_list.empty())
    {
        return L"";
    }
    else
    {
        return kill_list.front().c_str();
    }
}
Exemplo n.º 3
0
const wchar_t *kill_yank() {
    if (kill_list.empty()) {
        return L"";
    }
    return kill_list.front().c_str();
}