branch: elpa/inf-ruby
commit 5c73e1a79cff85df4cf0e2ea7a4741c8ed546973
Author: Dmitry Gutov <[email protected]>
Commit: Dmitry Gutov <[email protected]>
Use INSIDE_EMACS
Adapting to the current Emacs master.
Apparently, the EMACS env variable has been deprecated for a while.
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index ced93834bc..3f7ec7b3f6 100644
--- a/README.md
+++ b/README.md
@@ -118,10 +118,10 @@ type <kbd>M-x describe-function [RET] inf-ruby-minor-mode
[RET]</kbd>.
* Pry raises ZeroDivisionError in `lib/pry/pager.rb`?
- Put `Pry.config.pager = false if ENV["EMACS"]` into your `~/.pryrc`.
+ Put `Pry.config.pager = false if ENV["INSIDE_EMACS"]` into your `~/.pryrc`.
* Pry prints `[0G` right after start?
- Put `Pry.config.correct_indent = false if ENV["EMACS"]` into your `~/.pryrc`.
+ Put `Pry.config.correct_indent = false if ENV["INSIDE_EMACS"]` into your
`~/.pryrc`.
Please report problems at <http://github.com/nonsequitur/inf-ruby/issues>.