diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit dc03315b6ed63eb00b28a6535d95a0e8ba8a71ec
parent f96c3d7c3c87d597a2f87b0b0123dfd2b51423d1
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat,  1 Jan 2022 20:38:31 +0100

fix --no-pty short option

Diffstat:
Msrc/diary.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/diary.c b/src/diary.c @@ -476,7 +476,7 @@ int main(int argc, char** argv) { // read option characters while (1) { - option_char = getopt_long(argc, argv, "vhd:r:w:f:F:p:e:", long_options, &option_index); + option_char = getopt_long(argc, argv, "vhpd:r:w:f:F:e:", long_options, &option_index); if (option_char == -1) { break;