Navigation Menu

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/nixpkgs
base: ebb3f4d4284e
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 2edd48b4fd68
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 16, 2019

  1. picolisp: fix help functionality

    Currently, trying to use help results in something like this:
    
    ```
    : (help 'db)
    ========================================
    w3m: Can't exec
    =======================================
    ```
    
    By including `w3m` as an input, the behaviour changes to:
    
    ```
    : (help 'db)
    ========================================
    (db 'sym 'cls ['hook] 'any ['sym 'any ..]) -> sym | NIL
    Returns a database object of class cls, where the values for the sym arguments
    correspond to the any arguments. If a matching object cannot be found, NIL is
    returned. sym, cls and hook should specify a tree for cls or one of its
    superclasses. See also aux, collect, request, fetch, init and step.
    
    ========================================
    -> db
    ```
    yrashk committed Jun 16, 2019
    Copy the full SHA
    6278dbf View commit details
    Browse the repository at this point in the history
  2. Merge pull request #63139 from yrashk/picolisp-w3m-help

    picolisp: fix help functionality
    7c6f434c committed Jun 16, 2019
    Copy the full SHA
    2edd48b View commit details
    Browse the repository at this point in the history