aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2024-02-29 17:58:43 +0000
committerWarner Losh <imp@FreeBSD.org>2024-02-29 17:58:43 +0000
commit8b9178cd0d35ff2beafebdd51c8c44ba2b5aeb0f (patch)
treea2438885663e7060f9599dfa595ab0182dc837ae
parent3a3afbec3860b0eb4178b63713ca12bd223b585a (diff)
-rw-r--r--stand/lua/cli.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/stand/lua/cli.lua b/stand/lua/cli.lua
index 6832da0a31a5..596e55a8d1d8 100644
--- a/stand/lua/cli.lua
+++ b/stand/lua/cli.lua
@@ -30,18 +30,6 @@ local core = require("core")
local cli = {}
-if not pager then
- -- shim for the pager module that just doesn't do it.
- -- XXX Remove after 12.2 goes EoL.
- pager = {
- open = function() end,
- close = function() end,
- output = function(str)
- printc(str)
- end,
- }
-end
-
-- Internal function
-- Parses arguments to boot and returns two values: kernel_name, argstr
-- Defaults to nil and "" respectively.