summary refs log tree commit diff
path: root/src (follow)
Commit message (Expand)AuthorAge
...
* [SHELL] Fixed klibc/klcc build problemsDan McGee2008-05-03
* [ERROR] Set default exvwarning2 arg0 for errors during early initialisationHerbert Xu2008-05-03
* [CD] Restored warning when getcwd failsHerbert Xu2008-05-03
* [CD] Test __GLIBC__ instead of _GNU_SOURCEHerbert Xu2008-05-03
* [EXEC] Fixed _PATH_BSHELL warningHerbert Xu2008-05-03
* [CD] Restored non-glibc getcwd supportHerbert Xu2008-05-02
* [JOBS] Fix cmdtxt crash on if statementsLarry Doolittle2008-05-02
* [EXPAND] Fix slash treatment in expmetaHerbert Xu2008-05-02
* [PARSER] Do not show prompts in expandstrHerbert Xu2007-12-27
* [PARSER] Add FAKEEOFMARK for expandstrHerbert Xu2007-12-27
* [ARITH] If imaxdiv() isn't available, use / and % operatorsGerrit Pape2007-12-23
* [BUILTIN] Add set +o supportRichard M Kreuter2007-12-23
* [EVAL] Fix bad pointer arithmetic in evalcommandSteve Langasek2007-12-23
* [EXPAND] Expand here-documents in the current shell environmentHerbert Xu2007-11-11
* [EXPAND] Removed herefd hackHerbert Xu2007-11-11
* [PARSER] Removed noexpand/length check on eofmarkHerbert Xu2007-11-11
* [PARSER] Fix here-doc corruptionHerbert Xu2007-10-20
* [EXPAND] Added configure --enable-glob and --enable-fnmatch optionsHerbert Xu2007-10-20
* [SHELL] Replace shared illnum message by badnum function.Herbert Xu2007-10-17
* [BUILTIN] Disallow completely blank strings in non-arithmetic context.Oleg Verych2007-10-17
* [EXEC] Fixed execing of scripts with no hash-bangHerbert Xu2007-10-15
* [BUILTIN] Use setvarint to set OPTINDHerbert Xu2007-10-11
* [EXPAND] Add likely flags in expariHerbert Xu2007-10-11
* [ARITH] Size optimisations in arithmetic lexerHerbert Xu2007-10-11
* [ARITH] Add assignment and intmax_t supportHerbert Xu2007-10-11
* [PARSER] Report substition errors at expansion timeHerbert Xu2007-10-08
* [BUILTIN] Use intmax_t arithmetic in testHerbert Xu2007-10-06
* [VAR] Remove setvarsafeHerbert Xu2007-10-06
* [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Herbert Xu2007-10-06
* [MEMALLOC] Add pushstackmarkHerbert Xu2007-10-06
* [MEMALLOC] Made grabstackblock an inline wrapper for stallocHerbert Xu2007-10-05
* [PARSER] Size optimisations in parameter expansion parserHerbert Xu2007-10-04
* [PARSER] Fix parsing of ${##1}Herbert Xu2007-10-04
* [PARSER] Recognise here-doc delimiters terminated by EOFHerbert Xu2007-09-26
* [EXPAND] Refresh stack pointers after makestrspace in _rmescapesRoy Marples2007-09-26
* [MAN] Clarify syntax of the for commandGerrit Pape2007-09-25
* [MAN] Clarify description of -nt, -ot options to test builtinGerrit Pape2007-09-25
* [EXPAND] Move parse-time quote flag detection to run-timeHerbert Xu2007-09-25
* [EXPAND] Do not expand tilde in parameter expansion within quotesHerbert Xu2007-09-25
* [PARSER] Remove arithmetic expansion collapsing at parse timeHerbert Xu2007-09-24
* [PARSER] Remove superfluous dblquote settings when ending arithHerbert Xu2007-09-24
* [PARSER] Remove superfluous arinest test for dqvarnestHerbert Xu2007-09-24
* [PARSER] Remove superfluous arinest test in CENDQUOTEHerbert Xu2007-09-24
* [EXPAND] Perform tilde expansion in all parameter expansion wordsHerbert Xu2007-09-24
* [EXPAND] Do not quote back slashes in parameter expansions outside quotesHerbert Xu2007-09-24
* [BUILTIN] test: little size and speed optimizationsOleg Verych2007-09-22
* [BUILTIN] test: White space fixesOleg Verych2007-09-22
* [SHELL] Move flushall to the point just before _exitHerbert Xu2007-09-22
* [SHELL] Restore foreground process group on exitHerbert Xu2007-09-22
* [REDIR] Size optimisations in redir.cHerbert Xu2007-05-12
class='logsubject'>Enable -Wmissing-prototypesJune McEnroe In other words, warn when a function is missing static. I don't see why this isn't in -Wextra. 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 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