Merge "Remove `emergency` from the `fastboot reboot` completions."
am: 243be559a1

Change-Id: I7d40da109e13f94cb67140c95eb0c5a3263c3b06
diff --git a/fastboot/fastboot.bash b/fastboot/fastboot.bash
index a60046b..dca3b4e 100644
--- a/fastboot/fastboot.bash
+++ b/fastboot/fastboot.bash
@@ -85,7 +85,7 @@
                         ;;
                     reboot)
                         if [[ $COMP_CWORD == $i ]]; then
-                            args="bootloader emergency"
+                            args="bootloader"
                             COMPREPLY=( $(compgen -W "${args}" -- "${COMP_WORDS[i]}") )
                         fi
                         ;;