diff options
author | Richard Carlsson <[email protected]> | 2016-11-21 21:17:21 +0100 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2016-11-25 15:08:27 +0100 |
commit | a4d665795bb744f516e6fe36b97c38e123f8b706 (patch) | |
tree | ded6dbd191ac671168dcc5d4d06180711657bc68 /lib/stdlib/doc | |
parent | 86fa667f9731c790d6575f31efa156c02cb7984b (diff) | |
download | otp-a4d665795bb744f516e6fe36b97c38e123f8b706.tar.gz otp-a4d665795bb744f516e6fe36b97c38e123f8b706.tar.bz2 otp-a4d665795bb744f516e6fe36b97c38e123f8b706.zip |
Add shell mm() and lm() functions
Diffstat (limited to 'lib/stdlib/doc')
-rw-r--r-- | lib/stdlib/doc/src/c.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/stdlib/doc/src/c.xml b/lib/stdlib/doc/src/c.xml index 92ab59c6b0..55a77d1bc5 100644 --- a/lib/stdlib/doc/src/c.xml +++ b/lib/stdlib/doc/src/c.xml @@ -148,6 +148,15 @@ compile:file(<anno>File</anno>, <anno>Options</anno> ++ [report_errors, report_w </func> <func> + <name name="lm" arity="0"/> + <fsummary>Loads all modified modules.</fsummary> + <desc> + <p>Reloads all currently loaded modules that have changed on disk (see <c>mm()</c>). + Returns the list of results from calling <c>l(M)</c> for each such <c>M</c>.</p> + </desc> + </func> + + <func> <name name="ls" arity="0"/> <fsummary>List files in the current directory.</fsummary> <desc> @@ -182,6 +191,15 @@ compile:file(<anno>File</anno>, <anno>Options</anno> ++ [report_errors, report_w </func> <func> + <name name="mm" arity="0"/> + <fsummary>Lists all modified modules.</fsummary> + <desc> + <p>Lists all modified modules. Shorthand for + <seealso marker="kernel:code#modified_modules/0"><c>code:modified_modules/0</c></seealso>.</p> + </desc> + </func> + + <func> <name name="memory" arity="0"/> <fsummary>Memory allocation information.</fsummary> <desc> |