mirror of
https://github.com/troglobit/editline.git
synced 2025-05-05 20:11:12 +08:00
Avoid continuously duplicate commands in history
When adding a command to history, if CONFIG_UNIQUE_HISTORY is defined, always compare current command with the last entry in history.
This commit is contained in:
parent
7506826ac7
commit
448a3dac08
@ -1130,7 +1130,7 @@ static void hist_add(const char *p)
|
||||
char *s;
|
||||
|
||||
#ifdef CONFIG_UNIQUE_HISTORY
|
||||
if (H.Pos && strcmp(p, H.Lines[H.Pos - 1]) == 0)
|
||||
if (H.Size && strcmp(p, H.Lines[H.Size - 1]) == 0)
|
||||
return;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user