diff options
| author | Ted Zlatanov | 2014-12-20 06:14:04 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2014-12-20 06:14:04 -0500 |
| commit | 6623f3daaeecd1ec7cc24f3b0c534fa090b46ee1 (patch) | |
| tree | cd9de239378999b611cfa6eecdcfa05be4518380 | |
| parent | 8fa2e2544a0cc10bb1966f374a57bf946a213595 (diff) | |
| download | emacs-6623f3daaeecd1ec7cc24f3b0c534fa090b46ee1.tar.gz emacs-6623f3daaeecd1ec7cc24f3b0c534fa090b46ee1.zip | |
* net/tramp-sh.el (tramp-histfile-override): Clarify docstring.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/net/tramp-sh.el | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b658cc1d0fa..0a76e813641 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-12-20 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * net/tramp-sh.el (tramp-histfile-override): Clarify docstring. | ||
| 4 | |||
| 1 | 2014-12-19 Artur Malabarba <bruce.connor.am@gmail.com> | 5 | 2014-12-19 Artur Malabarba <bruce.connor.am@gmail.com> |
| 2 | 6 | ||
| 3 | * let-alist.el (let-alist): Enable access to deeper alists by | 7 | * let-alist.el (let-alist): Enable access to deeper alists by |
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index c639af3c230..e4ba762379f 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -66,8 +66,14 @@ files conditionalize this setup based on the TERM environment variable." | |||
| 66 | 66 | ||
| 67 | ;;;###tramp-autoload | 67 | ;;;###tramp-autoload |
| 68 | (defcustom tramp-histfile-override "/dev/null" | 68 | (defcustom tramp-histfile-override "/dev/null" |
| 69 | "Whether the HISTFILE should be overridden to something. Set | 69 | "When invoking a shell, override the HISTFILE with this value. |
| 70 | to nil to disable the override." | 70 | By default, the HISTFILE is set to the \"/dev/null\" value, which |
| 71 | is special on Unix systems and indicates the shell history should | ||
| 72 | not be logged (this avoids clutter due to Tramp commands). | ||
| 73 | |||
| 74 | If you set this variable to nil, however, the *override* is | ||
| 75 | disabled, so the history will go to the default storage | ||
| 76 | location, e.g. \"$HOME/.sh_history\"." | ||
| 71 | :group 'tramp | 77 | :group 'tramp |
| 72 | :type '(choice (const :tag "Do not override HISTFILE" nil) | 78 | :type '(choice (const :tag "Do not override HISTFILE" nil) |
| 73 | (const :tag "Empty the history (/dev/null)" "/dev/null") | 79 | (const :tag "Empty the history (/dev/null)" "/dev/null") |