mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 04:21:24 +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;
|
char *s;
|
||||||
|
|
||||||
#ifdef CONFIG_UNIQUE_HISTORY
|
#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;
|
return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user