aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-02 19:34:41 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-02 22:24:06 +0530
commit5cd97941024e1ffa73a909d6352948a4ec6bfdf0 (patch)
treed7104ca0486a6dee1494d1d95c04ed8e21c94561
parent6001eeb9a47f963a07b0bd6559aa2b146588619c (diff)
downloadnnn-5cd97941024e1ffa73a909d6352948a4ec6bfdf0.tar.gz
Remove redundant assignment
-rw-r--r--plugins/README.md4
-rw-r--r--src/nnn.c5
2 files changed, 4 insertions, 5 deletions
diff --git a/plugins/README.md b/plugins/README.md
index d29f358..2d2ab7c 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -21,8 +21,8 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
| dragdrop | Drag/drop files from/into nnn | sh | [dragon](https://github.com/mwh/dragon) |
| exetoggle | Toggle executable status of hovered file | sh | chmod |
| fzcd | Change to the directory of a fuzzy-selected file/dir | sh | fzy/fzf<br>(optional fd) |
-| fzhist | Fuzzy-select a cmd from history, edit in $EDITOR and run | sh | fzy |
-| fzopen | Fuzzy find a file in dir subtree and edit or xdg-open | sh | fzy, xdg-open |
+| fzhist | Fuzzy-select a cmd from history, edit in `$EDITOR` and run | sh | fzy |
+| fzopen | Fuzzy find a file in dir subtree and edit or open | sh | fzy, xdg-open |
| getplugs | Update plugins | sh | curl |
| gutenread | Browse, download, read from Project Gutenberg | sh | curl, unzip, w3m<br>[epr](https://github.com/wustho/epr) (optional) |
| hexview | View a file in hex in `$PAGER` | sh | xxd |
diff --git a/src/nnn.c b/src/nnn.c
index 54ff48f..03ccdc8 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -5767,9 +5767,8 @@ int main(int argc, char *argv[])
}
#endif
- /* Set nnn nesting level, idletimeout used as tmp var */
- idletimeout = xatoi(getenv(env_cfg[NNNLVL]));
- setenv(env_cfg[NNNLVL], xitoa(++idletimeout), 1);
+ /* Set nnn nesting level */
+ setenv(env_cfg[NNNLVL], xitoa(xatoi(getenv(env_cfg[NNNLVL])) + 1), 1);
/* Get locker wait time, if set */
idletimeout = xatoi(getenv(env_cfg[NNN_IDLE_TIMEOUT]));