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: dlang/phobos
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bc63d2b94964
Choose a base ref
...
head repository: dlang/phobos
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ff854b71b065
Choose a head ref
  • 5 commits
  • 43 files changed
  • 2 contributors

Commits on May 27, 2016

  1. XREF -> REF (sed)

    Done by:
    
    (find . -type f -name "*.d" -print0; \
        find . -type f -name "*.dd" -print0) | \
    xargs -0 sed -i -r \
        's/\$\(XREF\s+([^(),]*),\s*([^(),]*)\)/$(REF \2, std,\1)/g'
    aG0aep6G committed May 27, 2016
    Configuration menu
    Copy the full SHA
    764caef View commit details
    Browse the repository at this point in the history
  2. XREF_PACK -> REF (sed)

    Done by:
    
    from='\$\(XREF_PACK\s+([^(),]*),\s*([^(),]*),\s*([^(),]*)\)'
    to='$(REF \3, std,\1,\2)'
    (find . -type f -name "*.d" -print0; \
        find . -type f -name "*.dd" -print0) | \
    xargs -0 sed -i -r "s/$from/$to/g"
    aG0aep6G committed May 27, 2016
    Configuration menu
    Copy the full SHA
    d648f93 View commit details
    Browse the repository at this point in the history
  3. XREF_PACK_NAMED -> REF_ALTTEXT (sed)

    Done by:
    
    arg='\s*([^(),]*)'
    from='\$\(XREF_PACK_NAMED\s'$arg','$arg','$arg','$arg'\)'
    to='$(REF_ALTTEXT \4, \3, std,\1,\2)'
    (find . -type f -name "*.d" -print0; \
        find . -type f -name "*.dd" -print0) | \
    xargs -0 sed -i -r "s/$from/$to/g"
    aG0aep6G committed May 27, 2016
    Configuration menu
    Copy the full SHA
    ef97229 View commit details
    Browse the repository at this point in the history
  4. clean up remaining XREFs (manual)

    Found by: grep -r '$(XREF'
    
    std.experimental.allocator has a custom XREF2. Leaving that as is for now.
    aG0aep6G committed May 27, 2016
    Configuration menu
    Copy the full SHA
    641d6ff View commit details
    Browse the repository at this point in the history

Commits on May 28, 2016

  1. Merge pull request #4364 from aG0aep6G/kill-xref

    Replace XREF with REF
    DmitryOlshansky committed May 28, 2016
    Configuration menu
    Copy the full SHA
    ff854b7 View commit details
    Browse the repository at this point in the history
Loading