Add aweful.util.pread() so API docs have deprication notice (#1502)
* Add awful.util.pread() so API docs have deprication notice * Update util.lua * Update util.lua * Update util.lua
This commit is contained in:
parent
af8288335b
commit
ffca875633
|
@ -33,6 +33,11 @@ util.table = {}
|
||||||
--- The default shell used when spawing processes.
|
--- The default shell used when spawing processes.
|
||||||
util.shell = os.getenv("SHELL") or "/bin/sh"
|
util.shell = os.getenv("SHELL") or "/bin/sh"
|
||||||
|
|
||||||
|
--- Execute a system command and road the output.
|
||||||
|
-- This function implementation **has been removed** and no longer
|
||||||
|
-- do anything. Use `awful.spawn.easy_async`.
|
||||||
|
-- @deprecated awful.util.pread
|
||||||
|
|
||||||
--- Display a deprecation notice, but only once per traceback.
|
--- Display a deprecation notice, but only once per traceback.
|
||||||
-- @deprecated deprecate
|
-- @deprecated deprecate
|
||||||
-- @param[opt] see The message to a new method / function to use.
|
-- @param[opt] see The message to a new method / function to use.
|
||||||
|
|
Loading…
Reference in New Issue