Skip to content

Commit

Permalink
use _ instead of ~ for ignored values
Browse files Browse the repository at this point in the history
small readme edits
  • Loading branch information
JeffBezanson committed Nov 4, 2012
1 parent 7807c4c commit 848f19e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,12 @@ An [Arch Linux package](https://aur.archlinux.org/packages.php?ID=56877) is also
<a name="Editor-Terminal-Setup"/>
## Editor & Terminal Setup

Currently, [julia editing mode](https://github.com/JuliaLang/julia/wiki/Configuring-Editors) support is available for Emacs, Vim, and Textmate.
Currently, [julia editing mode](https://github.com/JuliaLang/julia/wiki/Configuring-Editors) support is available for Emacs, Vim, Textmate, Notepad++, and Kate.

Adjusting your terminal bindings is optional; everything will work fine without these key bindings.
For the best interactive session experience, however, make sure that your terminal emulator (`Terminal`, `iTerm`, `xterm`, etc.) sends the `^H` sequence for `Backspace` (delete key) and that the `Shift-Enter` key combination sends a `\n` newline character to distinguish it from just pressing `Enter`, which sends a `\r` carriage return character.
These bindings allow custom readline handlers to trap and correctly deal with these key sequences; other programs will continue behave normally with these bindings.
The first binding makes backspacing through text in the interactive session behave more intuitively.
These bindings allow custom readline handlers to trap and correctly deal with these key sequences; other programs will continue to behave normally with these bindings.
The first binding makes backspacing through text at the prompt behave more intuitively.
The second binding allows `Shift-Enter` to insert a newline without evaluating the current expression, even when the current expression is complete.
(Pressing an unmodified `Enter` inserts a newline if the current expression is incomplete, evaluates the expression if it is complete, or shows an error if the syntax is irrecoverably invalid.)

Expand Down
4 changes: 2 additions & 2 deletions base/linalg_dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -686,11 +686,11 @@ function (\){T<:LapackType}(A::StridedMatrix{T}, B::StridedVecOrMat{T})
return ans
end
if ishermitian(A)
ans, ~, ~, info = Lapack.sysv!('U', Acopy, X)
ans, _, _, info = Lapack.sysv!('U', Acopy, X)
if info > 0; error("Singular system"); end
return ans
end
ans, ~, ~, info = Lapack.gesv!(Acopy, X)
ans, _, _, info = Lapack.gesv!(Acopy, X)
if info > 0; error("Singular system"); end
return ans
end
Expand Down

0 comments on commit 848f19e

Please sign in to comment.