summary refs log tree commit diff
path: root/src/memalloc.h (unfollow)
Commit message (Expand)Author
2005-09-26Enclose abort insode ifdef DEBUG.herbert
2005-09-26Renamed error to sh_error.herbert
2005-09-26Normalise input in likely/unlikely macros.herbert
2005-09-26Removed expcmd built-in.herbert
2005-09-26Only set skipcount for break and continue.herbert
2005-09-26Update funcnest atomically.herbert
2005-09-26Replaced EXEVAL with SKIPEVAL.herbert
2005-09-26Corrected that/than typo in manual page.agcosta
2005-09-26Optimise away status and case statement in main().herbert
2005-09-26Eliminated global exerrno.herbert
2005-09-26Only reread exitstatus on EXEXIT in exitshell.herbert
2005-09-26Do not clobber exit status on EXEVAL.herbert
2005-09-26Size optimisations with state/s in main().herbert
2005-09-26Corrected grammar in manual page.agcosta
2005-09-26Catch set -e exits within built-in commands.herbert
2005-09-26Changed boolean rootshell into shlvl counter.herbert
2005-09-26Release 0.5.2.herbert
2005-09-26Corrected manual entry about ENV and non-interactive shells.pape
2005-09-26Removed debian files.herbert
2005-09-26Spell behaviour consistently in manual page.pape
2005-09-26Fixed spelling errors in manual page.agcosta
2005-09-26Fixed signed char promotion in src/expand.c.herbert
2005-09-26Size optimisations around varvalue() in src/expand.c.herbert
2005-09-26Fixed expansion when leading argument is null in src/expand.c.herbert
2005-09-26Allow negative pid argument to kill(1) in src/jobs.c.herbert
2005-09-26Fixed cd - when OLDPWD is unset.herbert
2005-09-26Include system.h.herbert
2022-02-19Run line editing testsJune McEnroe I know, it feels wrong. 2022-02-18Implement new line editing "library"June McEnroe Losing tab complete and text macros, for now. This new implementation works on an instance of a struct and does not interact with the rest of catgirl, making it possible to copy into another project. Unlike existing line editing libraries, this one is entirely abstract and can be rendered externally. My goal with this library is to be able to implement vi mode. Since it operates on struct instances rather than globals, it might also be possible to give catgirl separate line editing buffers for each window, which would be a nice UX improvement. 2022-02-18Simplify cursor positioning in inputJune McEnroe Do some extra work by adding the portion before the cursor to the input window twice, but simplify the interaction with the split point. This fixes the awkward behaviour when moving the cursor across colour codes where the code would be partially interpreted up to the cursor. 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe