Index | Thread | Search

From:
"Theo de Raadt" <deraadt@openbsd.org>
Subject:
Re: cal: add option to highlight the current day
To:
Johannes Thyssen Tishman <jtt@openbsd.org>, tech@openbsd.org, landry@openbsd.org
Date:
Sat, 04 Jul 2026 07:25:20 -0600

Download raw body.

Thread
  • Christian Groessler:

    cal: add option to highlight the current day

  • Theo de Raadt:

    cal: add option to highlight the current day

  • Calling tgetent() late is bizzare, and it made you do this:
    
    -       if (pledge("stdio", NULL) == -1)
    +       if (pledge("stdio rpath tty", NULL) == -1)
                    err(1, "pledge");
    
    In a word: Nope.
    
    
  • Christian Groessler:

    cal: add option to highlight the current day

  • Theo de Raadt:

    cal: add option to highlight the current day