Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move shell_parse into parser (fixes #3150) #13199

Closed
wants to merge 1 commit into from
Closed

move shell_parse into parser (fixes #3150) #13199

wants to merge 1 commit into from

Commits on Sep 19, 2015

  1. move shell_parse into parser (fixes #3150)

    Makes interpolation in backquotes work the same as it does for strings.
    
    For example, after this change:
    
        julia> macro example()
                   f = "a"
                   esc(quote
                       g = "b"
                       `echo $($f) $g`
                   end)
               end
    
        julia> @example
        `echo a b`
    
    Before, this produced the error "unsupported or misplaced expression $".
    nolta committed Sep 19, 2015
    Configuration menu
    Copy the full SHA
    a0efdd7 View commit details
    Browse the repository at this point in the history