| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-06-21 | libedit: fix pkg-config to really provide readline directory as intended | wiz | |
| 2023-06-20 | install pkg-config file for libedit | wiz | |
| version number matches portable libedit --cflags output matches portable libedit, since users probably want the readline interface | |||
| 2023-06-03 | bsd.own.mk: rename GCC_NO_* to CC_WNO_* | lukem | |
| Rename compiler-warning-disable variables from GCC_NO_warning to CC_WNO_warning where warning is the full warning name as used by the compiler. GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH Using the convention CC_compilerflag, where compilerflag is based on the full compiler flag name. | |||
| 2023-05-30 | Fix some const qual (Piotr Pawel Stefaniak) | christos | |
| 2023-04-25 | pass lint. | christos | |
| 2023-04-24 | PR/57376: Jorge Giner: readline file completion does not quote; do the same. | christos | |
| 2023-04-21 | Align types with readline-8.2 (wiz@) | christos | |
| 2023-02-04 | Remove unused stuff, and limit the scope of some of the used ones. | christos | |
| (from des@freebsd) | |||
| 2023-02-03 | Add a entry point for the complete function for FreeBSD compatibility with sh. | christos | |
| 2023-02-03 | Don't clear the handle to el "sel" and set it earlier to prevent handling | christos | |
| a signal before the handle is set. (From: des at FreeBSD) | |||
| 2022-12-06 | editrc(5): Markup fixes | uwe | |
| 2022-12-02 | PR/57095: Yilei Yang: Change readline's replace_history_entry to not make a copy | christos | |
| of the string to replace since H_REPLACE already makes a copy (fixes memory leak) | |||
| 2022-10-30 | improvements in malloc/free handling. | christos | |
| 2022-09-21 | PR/57016: Ricky Zhou: declare lastidx | christos | |
| 2022-09-20 | PR/57016: Ricky Zhou: Revert to trimming the last newline instead of the | christos | |
| first one so that multi-line commands work again. | |||
| 2022-04-11 | libedit/chartype.h: portability fix for OSF/1 | tnn | |
| 2022-04-08 | PR/56778: Detlev Casanova: Missing rl_initialize call in rl_copy_text | christos | |
| 2022-03-12 | Fix filename autocompletion for strings like a\)b | christos | |
| An escaped character should unconditionally be skipped together with the character that does the escaping. For example, in "a\)b" only the ")b" part was skipped but then the loop stopped at the "\" since it's one of the characters listed in word_break. (Piotr P. Stefaniak) | |||
| 2022-02-19 | PR/56695: Walter Lozano: Correct declaration of hook functions. | christos | |
| 2022-02-08 | libedit: fix typos, apply KNF to newly imported code (PR/56693) | rillig | |
| No binary change. | |||
| 2022-02-08 | PR/56693: Walter Lozano: Add support for rl_delete_text and rl_set_key | christos | |
| 2022-01-31 | PR/56622: Walter Lozano: Improve readline compatibility by adding | christos | |
| rl_readline_state support. | |||
| 2022-01-29 | Add more refreshes from Walter Lozano. The readline example in | christos | |
| http://www.mcld.co.uk/blog/2009/simple-gnu-readline-callback-style-example.html still does not work, but it is better. | |||
| 2022-01-14 | Don't use __printflike, use the explicit attribute so that this works outside | christos | |
| NetBSD. | |||
| 2022-01-14 | libedit: rl_message: annotate __printflike | tnn | |
| 2022-01-11 | PR/56618: Walter Lozano: Improve libedit compatibility with readline by | christos | |
| implementing: rl_copy_text, rl_erase_empty_line, rl_message, rl_on_new_line, rl_replace_line, rl_restore_prompt, rl_save_prompt | |||
| 2021-09-26 | make flag unsigned to match prototype of the function used | christos | |
| 2021-09-26 | - Completion should not add a quote at the end of the line to match an | christos | |
| already quoted quote. (Piotr Stefaniak) - fix lint unconst warnings for strchr | |||
| 2021-09-10 | libedit: fix indentation | rillig | |
| No change to the resulting object files. | |||
| 2021-09-10 | Add an LLVM fuzzing wrapper for the portable libedit (Christian Holler) | christos | |
| 2021-09-10 | rl_startup_hook should be called each time. From Carlos Henrique Lima Melara | christos | |
| 2021-09-09 | fix memory issues found by fuzzing (double frees and buffer overflows) | christos | |
| 2021-09-09 | Add casts to appease conversions between wchar_t and wint_t | christos | |
| 2021-09-03 | Try to refactor this in order to correct some of the memory issues | christos | |
| reported by Christian Holler. | |||
| 2021-08-30 | Add a changes file | christos | |
| 2021-08-29 | ^W is traditionally bound to ed-delete-prev-word and not kill-region | christos | |
| ^R is traditionally bound to em-inc-search-next and not redisplay This is what mksh, zsh bash, readline do (Baptiste Daroussin) | |||
| 2021-08-28 | Respect $EDITOR when execution one (Baptiste Daroussin) | christos | |
| 2021-08-21 | PR/56370: mirabilos: libedit change from 2017 kills history in gdb | christos | |
| 2021-08-21 | Add more api to make gdb-11 happy (but not gdbtui as usual) | christos | |
| 2021-08-15 | libedit: simplify calls to macro ADD_STRING | rillig | |
| The lint comments CONSTCOND and LINTED were not necessary. It is simpler to just specify what to free. GCC optimizes free(NULL) to be a no-op. No functional change. | |||
| 2021-08-15 | readline: fix lint warning about effective unconst cast | rillig | |
| Calling strchr to avoid the syntactical unconst cast is not necessary here. A simple pointer assignment is enough. No functional change. | |||
| 2021-08-15 | Add verb to sentence. | wiz | |
| 2021-08-15 | Disable attempts to handle EINTR and non-blocking I/O by default. It is | christos | |
| confusing to other programs and unexpected behavior. Reported by Ingo Schwarze. This behavior is now controlled with EL_SAFEREAD. | |||
| 2021-08-15 | Add a LINTED comment... Why doesn't NOTREACHED work? | christos | |
| 2021-07-31 | s/dependend/dependent/ | andvar | |
| 2021-07-14 | Via Jess Thrysoee, from Adrian Bunk: Fix libedit build on Linux/Alpha | christos | |
| Alpha is the only Linux architecture that has SIGINFO: https://sources.debian.org/src/manpages/5.10-1/man7/signal.7/#L522 But even on Alpha Ctrl-T is not supported, and therefore no VSTATUS: https://sources.debian.org/src/manpages/5.10-1/man3/termios.3/#L603-L608 For consistency check both signal existence and character existence | |||
| 2021-05-05 | PR/56147: Miroslav Lichvar: Avoid memory leak if strdup fails. | christos | |
| 2021-03-28 | Only unescape when we are quoting and don't add a space if we are quoting | christos | |
| (we already did) (Piotr Stefaniak) | |||
| 2021-03-28 | document the flag | christos | |
| 2021-03-28 | Pass the unescaped filename the the append function so it has to do less work | christos | |
| (for example it can call stat(2) directly (Piotr Stefaniak) | |||
