Skip to content

Commit 218102c

Browse files
committed
Revert SEARCHSIZE/LOOKAHEAD increase for now (re: af5ae2e)
This increase causes one of the pty.sh regression tests to fail on a number of systems. The cause is under investigation. More at: #864
1 parent c40851a commit 218102c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

NEWS

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ Uppercase BUG_* IDs are shell bug IDs as used by the Modernish shell library.
88
prompts use the kitty terminal's escape sequence (e.g. $'\E[4:4m'
99
in the PS1 prompt for formatting spaced dots).
1010

11-
2025-05-30:
12-
13-
- The editor typeahead buffer and the limit for the ${.sh.edchar} variable
14-
(used with the KEYBD trap) has been increased from 80 to 500 bytes.
15-
1611
2025-05-29:
1712

1813
- Fixed a serious but rarely occurring regression that corrupts variable

src/cmd/ksh93/include/edit.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
*
2626
*/
2727

28-
#define SEARCHSIZE 500
28+
#define SEARCHSIZE 80
2929

3030
#include "FEATURE/cmds"
3131
#include "FEATURE/locale"
3232
#include "terminal.h"
3333

3434
#define STRIP 0377
35-
#define LOOKAHEAD 500
35+
#define LOOKAHEAD 80
3636

3737
#if SHOPT_MULTIBYTE
3838
# include "national.h"

0 commit comments

Comments
 (0)