1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00

Base: Fix indentation in completion function for kill

This commit is contained in:
Adam Harald Jørgensen 2023-11-13 01:21:51 +01:00 committed by Ali Mohammad Pur
parent 66955b82a7
commit 67bc7cecbb
Notes: sideshowbarker 2024-07-17 08:45:34 +09:00

View file

@ -68,11 +68,11 @@ __complete_job_spec() {
}
_complete_kill() {
if test $*[-1] = '--' {
__complete_job_spec ''
} else {
__complete_job_spec $*[-1]
}
if test $*[-1] = '--' {
__complete_job_spec ''
} else {
__complete_job_spec $*[-1]
}
}
_complete_cd() {