Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 576abaa6503f
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 62e214fa6f34
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 19, 2017

  1. Copy the full SHA
    71987b1 View commit details

Commits on Dec 20, 2017

  1. Verified

    This commit was signed with the committer’s verified signature.
    shlevy Shea Levy
    Copy the full SHA
    62e214f View commit details
Showing with 0 additions and 7 deletions.
  1. +0 −7 src/linenoise/linenoise.cpp
7 changes: 0 additions & 7 deletions src/linenoise/linenoise.cpp
Original file line number Diff line number Diff line change
@@ -2587,13 +2587,6 @@ int InputBuffer::getInputLine(PromptBase& pi) {

// ctrl-I/tab, command completion, needs to be before switch statement
if (c == ctrlChar('I') && completionCallback) {
if (pos == 0) // SERVER-4967 -- in earlier versions, you could paste
// previous output
continue; // back into the shell ... this output may have leading
// tabs.
// This hack (i.e. what the old code did) prevents command completion
// on an empty line but lets users paste text with leading tabs.

killRing.lastAction = KillRing::actionOther;
historyRecallMostRecent = false;