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/src/shell_default.erl | |
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/src/shell_default.erl')
-rw-r--r-- | lib/stdlib/src/shell_default.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/stdlib/src/shell_default.erl b/lib/stdlib/src/shell_default.erl index 6947cf181b..cd63ab28b5 100644 --- a/lib/stdlib/src/shell_default.erl +++ b/lib/stdlib/src/shell_default.erl @@ -23,7 +23,7 @@ -module(shell_default). --export([help/0,lc/1,c/1,c/2,nc/1,nl/1,l/1,i/0,pid/3,i/3,m/0,m/1, +-export([help/0,lc/1,c/1,c/2,nc/1,nl/1,l/1,i/0,pid/3,i/3,m/0,m/1,lm/0,mm/0, memory/0,memory/1,uptime/0, erlangrc/1,bi/1, regs/0, flush/0,pwd/0,ls/0,ls/1,cd/1, y/1, y/2, @@ -83,6 +83,8 @@ ls() -> c:ls(). ls(S) -> c:ls(S). m() -> c:m(). m(Mod) -> c:m(Mod). +lm() -> c:lm(). +mm() -> c:mm(). memory() -> c:memory(). memory(Type) -> c:memory(Type). nc(X) -> c:nc(X). |